问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 需求 wx.request 客户端 6.5.3 2.0.0
function Info(uid) {
var that = this;
var head;
wx.request({
url: '',
data: {
},
header: {
'content-type': 'application/json'
},
success(res) {
that.head = res.data.head;
console.log(that.head);
}
})
console.log(that.head)
return that.head;
}
module.exports.Info = Info;
微信小程序开发问题解答
微信小程序开发者回答:
楼上正确,另外,需要看几篇关于【js 作用域 this】的文章
微信小程序开发者回答:
不要that. 就对了。。
微信小程序开发者回答:
外部的head和success里的head不是同一个,我要怎么给外部的head赋值
微信小程序开发者回答:
把that.head改成head就行了
本文网址:http://www.91bianli.com/weixinxiaochengxu/45692.html