vendor.js? [Vue warn]: Error in event handler for “xxx“: “TypeError: this.xx is not a function

vendor.js? [Vue warn]: Error in event handler for “xxx“: “TypeError: this.xx is not a function,第1张

vendor.js?  [Vue warn]: Error in event handler for "xxx": "TypeError: this.xx is not a function

使用了uni. o n ( ) 和 u n i . on()和uni. on()uni.emit()自定义事件来传递参数

 uni.$emit('update',{msg:'登录成功'})
		  uni.navigateBack({ 	 	 
	 	 })
uni.$on('update', function(data){ 
			        console.log('监听到事件来自 update ,携带参数 msg 为:'+e.msg);
				 if(e.msg){
					   // const vm = this; 
					    this.getChangGuan()
		         }
  });

改善方法
使用这个uni.$on用箭头函数不就行了吗

		onShow() {
			uni.$on('update', e => { 
			        console.log('监听到事件来自 update ,携带参数 msg 为:'+e.msg);
					if(e.msg){
					   // const vm = this; 
					    this.getChangGuan()
					}
			  });
		},

网上一大推什么使用 let vm = this vm.getChangGuan();不行。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1296906.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存