美文网首页
关于微信小程序在页面上进行数据转换方法

关于微信小程序在页面上进行数据转换方法

作者: SevenLonely | 来源:发表于2019-07-23 18:57 被阅读0次

    页面过滤 通道

    <text>{{m.fmtMobile(userPhone)}}</text>
    <wxs module="m">
     function fmtMobile(mobile) {
        return mobile && mobile.replace ? mobile.replace(getRegExp("^(\d{3})(\d{4})(\d{4})$"), "$1****$3") : mobile;
     }
     module.exports = {
       fmtMobile: fmtMobile
     };
    </wxs>
    

    相关文章

      网友评论

          本文标题:关于微信小程序在页面上进行数据转换方法

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