封装保留显示小数代码
记录小白微信小程序开发日志第二篇,希望能够帮助到大家
var numberUtil = {
numberFormat: function(value) {
var v = parseFloat(value) //强转Int,毕竟有可能返回是String类型的数字
return v.toFixed(2)
}
}
module.exports = {
numberFormat: numberUtil.numberFormat //暴露接口调用
}
// 在wxml中引用
<wxs module="numberUtil" src="../../../utils/util.wxs"></wxs>
<!-- 使用:
{{numberUtil.numberFormat(item.price)}} -->