小程序 wxml使用indexOf,toString之 wxs

// wxs
function fn(arr, arg) {
  var result = {
    indexOf: false,
    toString: ''
  }
  result.indexOf = arr.indexOf(arg) > -1;
  result.toString = arr.join(",");return result;
}
module.exports.fn= fn;

在需要使用方法的wxml组件中引入,

<wxs src="../util.wxs" module="tools" />   <!-- tools可以自定义 -->
<view class='listImg {{tools.fn([1,2,3,4], 4).indexOf ? "active" : ""}}'>
   这是文本的标题
</view>
<view class='listImg '>
  {{tools.fn([1,2,3,4], 4).toString}}
</view>

结束~

posted @ 2019-01-09 18:46  李里ly  阅读(4385)  评论(0编辑  收藏  举报