码迷,mamicode.com
首页 > 微信 > 详细

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

时间:2020-06-17 14:22:50      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:程序   模板   --   一个   html   func   utils   ber   module   

通常在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的运算结果 -->

 

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

标签:程序   模板   --   一个   html   func   utils   ber   module   

原文地址:https://www.cnblogs.com/sunday123/p/13152157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!