微信小程序页面怎样获得全局变量
微信小程序页面获得全局变量的案例:
app.js文件代码:
App({globalData{
test:"helloworld"
}
})
index.js文件代码:
varapp=getApp()Page({
test:null
})
onLoad:function(options){
this.setData({
test:app.globalData.test
})
}
index.wxml文件代码:
<view>{{test}}</view>
本文来源:https://www.yuntue.com/post/71148.html | 云服务器网,转载请注明出处!