Info = {
GlbCfg: "",
LAL: {
latitude: "",
longitude: ""
}
}
test = new Promise(function (resolve, reject) {
resolve(123);
});
test.then(function (res) {
Info.GlbCfg = res;
});
console.log(Info);
console.log(Info.GlbCfg);
第一个Info的GlbCfg有值
第二个居然是空的。。。。
微信小程序开发问题解答
微信小程序开发者回答:
因为是异步的吧,你加个延迟打印,就会神奇的发现,有值了
本文网址:http://www.91bianli.com/weixinxiaochengxu/17371.html