uniapp全局变量
作者:互联网
创建
<script>
export default {
onLaunch: function() {
console.warn('当前组件仅支持 uni_modules 目录结构 ,请升级 HBuilderX 到 3.1.0 版本以上!');
console.log('App Launch');
},
//把想要全局的数据放在globalData对象里,globalData是uniapp的不可以自定义命名。
globalData:{
personalInformation:{
name:null,
post:null,
company:null,
workshop:null,
},
}
}
</script>
赋值
data() {
return {
可以在data里面写一个参数接受globalData,方便在该页面使用
htp:getApp().globalData
};
},
onLoad() {
//uniapp的全局变量如果声明了对象,可以直接打点调用赋值。
let s = res.data.data.userInfo;
_this.htp.personalInformation.name = s.nickName;
_this.htp.personalInformation.post = s.post.postName;
_this.htp.personalInformation.company = s.company.companyName;
_this.htp.personalInformation.workshop = s.workshops
},
使用
onLoad() {
this.personalInformation = this.htp.personalInformation;
console.log(this.personalInformation);
},
标签:uniapp,null,console,globalData,htp,personalInformation,全局变量,data 来源: https://www.cnblogs.com/Qinhr/p/16526029.html