美文网首页
小程序wxs的使用

小程序wxs的使用

作者: 前端来入坑 | 来源:发表于2019-06-13 21:12 被阅读0次

    xxx.wxs

    function filterSoming(data) {
      if( ...... ){ ...... }//这里面是对数组进行处理的操作
      return data
    }
    
    module.exports = {
      filterSoming:filterSoming
    }
    

    使用的时候在xxx.html中引入

    <wxs src="xxx.wxs" module="utils">
    
    <view>{{utils.filterSoming(data)}}</view>
    

    相关文章

      网友评论

          本文标题:小程序wxs的使用

          本文链接:https://www.haomeiwen.com/subject/yhkeiqtx.html