Uncaught TypeError: this.XXXXX is not a function

image
看看你调用方法是不是不和这句话在一个函数方法里,

A(){
    a(){
		this.B
	}
}
B(){

}

B与A是平级的,不能直接在a中用this,a中的this指向A
所以

A(){
	var that = this
    a(){
		that.B
	}
}
B(){

}
posted @ 2022-10-11 16:41  又一岁荣枯  阅读(16)  评论(0编辑  收藏  举报