阅读量:144

微信小程序页面获取全局变量的案例:
app.js文件代码:
App({globalData{
test:"hello world"
}
})
index.js文件代码:
var app =getApp()Page({
test:null
})
onLoad: function (options) {
this.setData({
test:app.globalData.test
})
}
index.wxml文件代码:
{{test}}