>> 编写wxs文件——filter.wxs
//1. 价格格式化function getPriceFormat(value) { return parseFloat(isNaN(value) ? 0 : value).toFixed(2);}module.exports = { getPriceFormat: getPriceFormat}
>> wxml模板文件中导入过滤器文件:
>> 在模板中使用过滤器:
¥{ {filter.getPriceFormat(item[index].price)}}