微信小程序中{{}}浮点数相乘有误差,怎么使用表达式?
<view>
<!–index.wxml -->
<view wx:for="{{items}}">
{{item.a*item.b}}
<!-- {{(item.a*item.b).toFixed(2)}} 会出错! -->
</view>
</view>
data: {
items:[
{a:60,b:6},
{a:50.1,b:6},
{a:80.1,b:6}
]
},
存在误差,怎么可以解决。
…
为什么总删我的贴子