function Parent() {}Parent.prototype.func1 = function(callback) { this.callback = callback;}Parent.prototype.func2 = function() { this.callback.fetchData()}在构造函数中,是不是func1定义的属性,如this.callback。在func2中也可以访问?
3 回答
Qyouu
TA贡献1786条经验 获得超11个赞
可以 构造函数中的this是实例对象,这些属性是挂在实例对象上的。
function Parent() {
}
Parent.prototype.func1 = function(callback) {
this.callback = callback;
}
Parent.prototype.func2 = function() {
console.log(this.callback)
this.callback.fetchData()
}
Parent.prototype.func1({fetchData: function(){
console.log(2)
}})
let per = new Parent()
per.func2()
添加回答
举报
0/150
提交
取消