小程序架构示例
小程序架构包
小程序示例包
Page({
data: {
systemInfo: JSON.stringify(my.callSync("getSystemInfo", {}), null, 2)
},
onClickUpdate: function () {
var that = this;
my.call("getSystemInfo", {}, function (result) {
that.setData({
systemInfo: JSON.stringify(result, null, 2)
});
});
}
});
<div>
<button style="height: 40px;" v-on:click="onClickUpdate">刷新</button>
<div><pre>{{systemInfo}}</pre></div>
</div>