在那边《 JavaScript 编程精髓》里面的例子。
代码: https://output.jsbin.com/zupezayihi
var print = console.log;
function BasicServer() {
this.decorator_list = []
this.decorators = {}
}
BasicServer.prototype.init = function() {
for (var i = 0; i < this.decorator_list.length; i++) {
var func = this.decorator_list[i]
this.decorators[func].init(i)
}
}
BasicServer.prototype.decorated = function(i) {
this.decorator_list.push(i)
}
//BasicServer.prototype.decorators = {}
BasicServer.prototype.decorators.nodeServer = {
init: function(i) {
print('init node Server');
print(i);
}
}
为什么我在函数里面定义的变量
this.decorators = {}
在 BasicServer.prototype.decorators.nodeServer 添加元素的时候会提示 nodeServer undefine ?
用注释掉的方法就可以, BasicServer.prototype.decorators = {}
对 prototype 这些术语不太熟,可能问的不太明白,见谅了~
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.