Я читал обложку Crockford для предотвращения перезаписи прототипов и понимал, что это не решение "все-все-все-все". Я также понимаю, что ES5 Shim может быть жизнеспособной альтернативой этому. Я также читаю этот пост, который обеспечивает более надежную и безопасную альтернативу.
Тем не менее, я хотел бы знать, что его Object.create
прокладка "говорит", а затем "делает". Может кто-нибудь, пожалуйста, скажите, правильно ли написаны мои комментарии?
if (typeof Object.create === 'undefined') {
//If the browser doesn't support Object.create
Object.create = function (o) {
//Object.create equals an anonymous function that accepts one parameter, 'o'.
function F() {};
//Create a new function called 'F' which is just an empty object.
F.prototype = o;
//the prototype of the 'F' function should point to the
//parameter of the anonymous function.
return new F();
//create a new constructor function based off of the 'F' function.
};
}
//Then, based off of the 'Lost' example in the Crockford book...
var another_stooge = Object.create(stooge);
//'another_stooge' prototypes off of 'stooge' using new school Object.create.
//But if the browser doesn't support Object.create,
//'another_stooge' prototypes off of 'stooge' using the old school method.
Таким образом, прототип объекта "stooge" нельзя перезаписать, когда мы добавим материал в "another_stooge". Не нужно reset прототипа 'stooge', используя 'конструктор'.
Спасибо заранее,
-k