OverviewThe prototype pattern refers to the type of object created by the prototype instance, and new objects are created by copying these prototypes. It is a pattern used to create objects, that is, to create an object as the prototype property of another object; Prototype warning: Before learning about the prototype mode, you need to first learn about prototype, prototype chain, prototype, __proto__, constructor and other knowledge; Implementing the Prototype PatternES5 API: Object.create(prototype, optionalDescriptorObjects) The Object.create() method receives two parameters: the first parameter is the __proto__ object, and the second is the prototiesObject (optional, the second parameter can be used to initialize additional properties, accepting literal object form); var vehiclePrototype = { model:"Porsche", getModel: function () { console.log('The vehicle model is: ' + this.model); } }; var vehicle = Object.create(vehiclePrototype,{ "model":{ value:"Ferrari" } }); vehicle.getModel(); //Vehicle model is: Ferrari We use Object.create to actually create a new object vehiclePrototype, and inherit the methods of vehiclePrototype, so at this time vehicle.__proto__ == vehiclePrototype; The value of "model" is initialized in the second parameter, and the value of model is initialized to "Ferrari", so at this time there is only one model in the newly created object vehiclePrototype, and the value is "Ferrari"; Instead of using Object.create(), use prototype: var vehiclePrototype = { init: function (carModel) { this.model = carModel || "Porsche"; }, getModel: function () { console.log('The vehicle model is: ' + this.model); } }; function vehicle(model) { function F() { }; F.prototype = vehiclePrototype; var f = new F(); f.init(model); return f; } var car = vehicle('Ferrari'); car.getModel(); // The vehicle model is: Ferrari In the above code, we can see that the core is in vehicle. We first create a new constructor, then point the prototype of the function to vehiclePrototype, then instantiate the function, and finally call the init method on prototype after inheritance. Finally, returning the execution result can also be achieved; SummarizeThe prototype pattern is ubiquitous in JavaScript, and many other patterns are also implemented based on prototype, so it is important to study and review the knowledge of prototype and prototype chain, with an emphasis on key attribute knowledge points such as prototype, __proto__, constructor, etc. The above is the details of how to implement the prototype pattern with JavaScript. For more information about the JavaScript prototype pattern, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: How to install and configure Redis in CentOS7
>>: Summary of common problems and application skills in MySQL
The relationship between Javascript and DOM is ve...
Anyone who has read my articles recently knows th...
Preface The MySQL slow query log is a type of log...
Icon icon processing solution The goal of this re...
The core is mysqldump and Runtime The operation i...
This article example shares the specific code of ...
Table of contents 1 Test Environment 1.1 Server H...
Table of contents 1. Project Description 2. Nginx...
Table of contents Introduction Mirror repository ...
The solution to forgetting the initial password o...
Since we are going to upload pictures, the first ...
Think big and small, then redirect. Sometimes Lin...
1. Problem There is a table as shown below, we ne...
Both methods can be used to execute a piece of ja...
Table of contents Components - Timeline Custom no...