微信小程序页面获取全局变量的案例:
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>


微信小程序页面获取全局变量的案例:
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>
发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。