找了一下文檔,發現可使用wxs文件解決javascript
文檔地址:https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxs/html
經過使用wxs文件,實如今wxml頁面中調用自定義的JavaScript函數java
具體思路:函數
使用到wxs文件,而後在wxs文件裏面添加numberToFix函數;而後在須要使用numberToFix方法的wxml頁面引入該wxs文件,而後就能夠經過{{numberToFix(persent)}}這種方式調用了
code
1# 建立一個numbertofix.wxs文件,建立numberToFix函數xml
var filter = { numberToFix: function (value) { return value.toFixed(1) } } module.exports = { numberToFix: filter.numberToFix }
2# 在須要使用numberToFix函數的頁面引入numbertofix.wxs文件htm
<wxs module="filter" src="../../utils/numbertofix.wxs"></wxs>
3# 調用便可ip
<text class="vote-item-data-percent">{{filter.numberToFix(item.vote_count/vote.data.voters_count*100)}}%</text>