美文网首页
小程序:wxs的使用(wxml中做js处理)

小程序:wxs的使用(wxml中做js处理)

作者: 东方晓 | 来源:发表于2022-04-28 13:56 被阅读0次

    2022-04-28 周四

    官方文档

    举个栗子,以下我在页面内写了一个<wxs>标签,对页面内的手机号做格式化处理。

    <wxs module="util">
      var intervalTel = function (tel) {
        if (tel.length === 11) {
          return tel.substring(0, 3) + " " + tel.substring(3, 7) + " " + tel.substring(7, 12);
        }else{
          return tel
        }
      }
    
      module.exports.intervalTel = intervalTel
    </wxs>
    
    • <wxs>标签内指定模块名、并通过moudle.exports的方式导出方法

    wxml中调用该方法

    <view>{{util.intervalTel (phone)}}</view>
    

    很方便诶。

    相关文章

      网友评论

          本文标题:小程序:wxs的使用(wxml中做js处理)

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