微信小程序开发 函数方法使用

创建wxs文件, 自定义方法

//wxs文件
var fiterse={    
  tofixed:function(num,count){                     自定义方法
        return  num.toFixed(count);
  }
}

module.exports={           //暴露方法
  toFix:fiterse.tofixed
}

在wxml文件中引用,并使用

//index.wxml
//引用wxs文件

//使用方法

  {{hw.toFix(item.money,3)}}

 

你可能感兴趣的:(微信小程序)