微信小程序报错“Component “页面路径“ does not have a method “ 方法名“ to handle event tap的 我遇到这个问题的原因是,data属性把methods包括在里面了,把methods当成了一个字段,所以就相当于没写methods属性,里面的方法就识别不了了。解决办法就是把data的后括号打在methods前面。
微信小程序:Component “页面路径“ does not have a method “ 方法名“ to handle event “tap“. 如果是 Component不是Page的话,方法需要放在methods里,否则方法不生效
组件化开发中使用 methods 把方法包起来; 取消勾选 “将 JS 编译成 ES5”; 勾选“启用代码自动热重载” 选项; 修改“调试基础库” 版本;
你bindtap绑定了个方法 叫做 _onComfirm 但是你组件的js的methods对象里 并没有这个方法 ...
问题可能出现在函数名字和路由方法名称写法相近,这个只是我自己的预估,后来把函数名改了就没这个问题了 ...