事件警告Do not have xxx handler in current p
发布于 6 年前 作者 pzhong 15049 次浏览 来自 问答

事件警告Do not have xxx handler in current page: 

WAService.js:18 Tue Sep 11 2018 11:53:31 GMT+0800 (中国标准时间) 事件警告

VM94:1 Do not have choiceTag(1) handler in current page: pages/tag/tag. Please make sure that choiceTag(1) handler has been defined in pages/tag/tag, or pages/tag/tag has been added into app.json

按网上说的更改排序也没有弄好,求大神指点

3 回复

这里不支持类似 Vue 的写法,绑定时请不要写成函数立即执行的样子。

方法中不支持这样传入值,你可以这样写

<view bingtap=‘choiceTag’  data-id=’{{item.id}}’></view>

choiceTag(e){

let id = e.currentTarget.dataset.id;

//…

}

谢谢   脑袋秀逗了

回到顶部