在下面的代码中,所有instaniated Page对象都从静态变量'nextId'获取它们的Id。重置nextId的最佳方法是什么?我不喜欢我这样做的方式,因为它是通过实例化对象访问的。我宁愿做类似的事情:
Page.reset()。怎么可能?
https://plnkr.co/edit/heOz52QxK6CExhe8Hdfm?p=preview
var Page = (function() {
var nextId = 0;
function Page(content) {
this.id = nextId++;
this.content = content;
}
Page.prototype.reset = function() {
nextId = 0;
}
Page.prototype.show = function() {
console.log(this.content + ' is ' + this.id);
}
return Page;
}())
var a = new Page('a')
a.show() // a is 0
var b = new Page('b')
b.show() // b is 1
var c = new Page('c')
c.show() // c is 2
a.reset()
var d = new Page('d')
d.show() // d is 0
答案 0 :(得分:0)
在页面对象上定义 #reset(),而不是在它的原型上:
Page.reset = function() {
nextId = 0;
}