Maison  >  Questions et réponses  >  le corps du texte

javascript - Pourquoi une classe peut-elle toujours l'appeler même si elle ne définit pas les méthodes de connexion et getUserInfo?

Il y a les déclarations suivantes dans WxService :

class Service {
    ....没有找到login和getUserInfo的定义
    }
export default Service

Il y a les déclarations suivantes dans app.js :

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
        })
    },
})

Pourquoi this.WxService.login() et this.WxService.getUserInfo() peuvent-ils être exécutés ?

PHP中文网PHP中文网2695 Il y a quelques jours679

répondre à tous(2)je répondrai

  • phpcn_u1582

    phpcn_u15822017-06-26 10:59:41

    Merci pour l'invitation.

    This.WxService est l'objet empaqueté par WeChat et est caché du monde extérieur.

    ps : De plus, WeChat a son propre protocole weixin:// similaire à http://

    répondre
    0
  • 扔个三星炸死你

    扔个三星炸死你2017-06-26 10:59:41

    this.WxService est l'objet empaqueté par Weixin
    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
      }
    })

    répondre
    0
  • Annulerrépondre