莫名其妙的坑,浪费好多时间!!!!首先是wx:for-items不循环的问题,换wx:for才解决。
然后是WXS处理touch事件,可以调用,但没有给参数,换web一点问题没有,唉~~~~
<wxs module="move" >
module.exports = {
touchStart: function(e, ins) {
console.log('touchStart',e,ins) //这里e和ins 全是undefined
}
}
</wxs>
<view class="aset" catchtouchstart="{{move.touchStart}}" >
</view>
glass-easel 仅支持 wx:for,wxs 响应事件暂不支持。 建议先看一下适配指引
https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/glass-easel/migration.html
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。