原生小程序 wxs使用
Posted 旺仔小裤头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原生小程序 wxs使用相关的知识,希望对你有一定的参考价值。
github地址:https://developers.weixin.qq.com/miniprogram/dev/framework/view/wxs/
js:
Page({
data: {
array: [1, 2, 3, 4, 5, 1, 2, 3, 4]
}
})
wxml:
<view> {{m1.getMax(array)}} </view>
<wxs module="m1">
var getMax = function(array) {
var max = undefined;
for (var i = 0; i < array.length; ++i) {
max = max === undefined ?
array[i] :
(max >= array[i] ? max : array[i]);
}
return max;
}
module.exports.getMax = getMax;
</wxs>
以上是关于原生小程序 wxs使用的主要内容,如果未能解决你的问题,请参考以下文章