在wxml文件中,只能访问这个js页面中的 data 数据吗? 能不能访问全局的数据啊?
不然每个页面的data里面都要拷贝一份全局数据,太冗余了
可以直接用 app.globalData.needData
app.js
App({
globalData:{
needData:‘abc’
}
})