wxs 中写一个方法
<wxs module="tools"> var includes = function (array, searchElement) { return array.indexOf(searchElement) !== -1 } module.exports = { includes:includes } </wxs>
使用:
<view class="btn_wrap" wx:if="{{tools.includes(item.containType,type)}}"> <view>test</view> </view>
本文作者为gengboxb,转载请注明。