wxs 中 toLocaleString 无效
module.exports = { currency: function (money) { var money = money.toLocaleString( 'zh-CN' , { style: 'currency' , currency: 'CNY' }); return money; } } |
在 wxs 中 使用 toLocaleString 并没有按照预期进行格式化,而我看文档中 wxs 是支持 toLocaleString 方法的