评论
解决小程序Page "pages/index/index" does not have a method "e0"

解决小程序Page "pages/index/index" does not have a method "e0"

我们几乎生活在各种各样的幕中,成为一种被遮挡的存在。 ---弗朗西斯·培根-

解决小程序Page "pages/index/index" does not have a method "e0"

问题

这情况通常出现在uni-app开发的小程序上;有一个很蜜汁操作;

事情如下,有一个点击出现picker选择器的操作

如果你直接点击他控制报错;如果你进入小程序后 重启小程序或等一会;它又是可以的。重启等待不是长久之计(解决小程序Page "pages/index/index" does not have a method "e0")

Page "pages/index/index" does not have a method "e0"
解决小程序Page "pages/index/index" does not have a method "e0"

解决

问题出现在点击事件的语法上,按道理是没问题。但它实实在在的罪魁祸首

@click="showfunction = true
解决小程序Page "pages/index/index" does not have a method "e0"

把点击函数修改成日常模式即可


@click="showClose()"

showClose() {
this.showfunction = !this.showfunction;
},
解决小程序Page "pages/index/index" does not have a method "e0"