Czytałem na podkładce Crockford, aby zapobiec nadpisywaniu prototypów i rozumiem, że nie jest to rozwiązanie typu end-all/be-all. Rozumiem również, że ES5 Shim może być realną alternatywą dla tego. Czytałem również this post which provides a more robust, secure alternative.Zrozumienie obiektu obiektu Crockford.create shim
Nadal chciałbym wiedzieć, co jego podkładka "mówi", a następnie "robi". Czy ktoś może mi powiedzieć, czy moje wyjaśnienia są poprawne?
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.
ten sposób prototyp „marionetką” obiektu nie mogą być nadpisane kiedy powiększać rzeczy do „another_stooge”. Nie trzeba resetować prototypu "stooge" za pomocą "konstruktora".
Dzięki z góry,
-k
A-ha! Myślę, że rozumiem. Dzięki Szejkowi ... twoja pomoc jest bardzo ceniona !!! – kaidez
Jesteś bardzo zadowolony :-) –