博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
微信小程序——过滤器的模拟
阅读量:4935 次
发布时间:2019-06-11

本文共 328 字,大约阅读时间需要 1 分钟。

>> 编写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)}}

转载于:https://www.cnblogs.com/xyyt/p/8528377.html

你可能感兴趣的文章