微信小程序-wxml模板页面逻辑运算

时间:2020-06-17 14:22:50   收藏:0   阅读:231

通常在utils中创建一个.wxs后缀的文件(例如:fn.wxs)

function addition(a,b){
	return Number(a)+Number(b);
}
module.exports = {
	addition:addition,
}

 

需要逻辑运算的wxml页面

<wxs src="../../utils/fn.wxs" module="tool" />
<view class="nowpage">{{tool.addition(page.index,1)}}</view><!-- 得到page.index+1的运算结果 -->

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!