微信小程序中不能直接在wxml使用includes,否则 不起作用
需要通过wxs使用:
1、在wxs下创建一个includes.wxs
var includes = function (array, searchElement) {
return array.indexOf(searchElement) !== -1
}
module.exports = {
includes: includes
}
2、在wxml中使用
先引入 后使用
<wxs module="jstools" src="/wxs/includes.wxs"></wxs>
wx:if="{{jstools.includes(btnArr,'处理')}}"
文章来源地址https://www.toymoban.com/news/detail-509901.html
文章来源:https://www.toymoban.com/news/detail-509901.html
到了这里,关于微信小程序在 wxml 文件中使用 Array.includes 方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!