Heim > Fragen und Antworten > Hauptteil
In WxService gibt es folgende Aussagen:
class Service {
....没有找到login和getUserInfo的定义
}
export default Service
In app.js gibt es folgende Aussagen:
import WxService from 'helpers/WxService'
APP({
WxService: new WxService,
getUserInfo() {
return this.WxService.login()
.then(data => {
console.log(data)
return this.WxService.getUserInfo()
})
.then(data => {
console.log(data)
this.globalData.userInfo = data.userInfo
return this.globalData.userInfo
})
},
})
Warum können this.WxService.login() und this.WxService.getUserInfo() ausgeführt werden?
phpcn_u15822017-06-26 10:59:41
谢邀。
this.WxService是微信封装的对象,对外是隐藏的。
ps:另外微信还有自己的协议weixin://类似http://
扔个三星炸死你2017-06-26 10:59:41
this.WxService是微信封装的对象
https://mp.weixin.qq.com/debu...
wx.getUserInfo({
success: function(res) {
var userInfo = res.userInfo
var nickName = userInfo.nickName
var avatarUrl = userInfo.avatarUrl
var gender = userInfo.gender //性别 0:未知、1:男、2:女
var province = userInfo.province
var city = userInfo.city
var country = userInfo.country
}
})