var obj = {
f1: function() {
var p = new this.f2()
Object.assign(this, p)
console.log(1, this)
},
f2: function() {
console.log(2, this)
this.f3 = function() {
console.log(3, this)
}
}
}
(上面是示例代码,实际代码是下面小程序的)
现在我在f2
里面获取this
是一个{imageLoaded: ƒ ()}
,为什么不是指向obj
的this
,我要怎么做才可以把f3
添加到obj
,又能在f2
中有指向obj
的this
?
Page({
f1: function() {
console.log(this) //{}
this.imageLoaded = function() {}
},
f2: function() {
const p = new this.f1()
Object.assign(this, p)
},
})
<image src="{{item}}" hidden bindload="imageLoaded"></image>
你想Page接收options做上下文 但是Page已经指定了上下文了。可不可以直接注册f3 来实现代码逻辑呢