小程序在wxml页面中取整
小程序无法像html中,在页面中直接parseInt()
- index.wxml
{{price | Int}}
小程序还有另一种处理方法
wxs 是一种类似于js脚本的东西
- filters.wxs
var filters = {
toFix: function (value) {
return parseFloat(value)
}
}
module.exports = {
toFix: filters.toFix
}
-index.wxml
<wxs module="filters" src="../filters.wxs"></wxs>
<view class="price">
<text>¥</text>{{filters.toFix(lesson.price)}}
</view>
奋斗就是每天很难,可是一年一年却越来越容易;
不奋斗就是每天很容易,可是一年一年却越来越难。