微信小程序数据绑定保留小数位数

使用wxs写一个filter过滤函数

WXS

/*wxs*/
var NumberFormat = {
  toFix: function (value, precision) {
    return value.toFixed(precision)
  }
}

module.exports = {
  toFix: NumberFormat.toFix
}

WXML

/*wxml*/
<wxs module="numberFormat" src="../../filters/NumberFormat.wxs"></wxs>

<view>{{numberFormat.toFix(item.price, 2)}}</view>

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/25/wechat-mini-program-data-binding-reserve-decimal-places/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
微信小程序数据绑定保留小数位数
使用wxs写一个filter过滤函数 WXS /*wxs*/ var NumberFormat = { toFix: function (value, precision) { return value.toFixed(precision) } } modu……
<<上一篇
下一篇>>
文章目录
关闭
目 录