热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mpvue里created里异步请求结果,如何在beforeMount里获取到呢

问题描述用mpvue做小程序时,要在首页展示轮播图之前获取到token,openId,并在请求获取轮播图时候在header里传进去,后面所有接口都需要这两个头部信息。我想在created里获取到这两个

问题描述

用mpvue做小程序时,要在首页展示轮播图之前获取到token,openId,并在请求获取轮播图时候在header里传进去,后面所有接口都需要这两个头部信息。我想在created里获取到这两个结果,存在storage里在beforeMount里调用,可是不能行



之前我是直接用new Promise一路then下来,最后一个then里调用轮播方法传进去openId和token,想问下还有别的方法吗

this.$http是flyIO挂载在vue原型上



created(){
this.checkIt()
.then(function (res) {

1
2
3
4
5
6
console.log('index首页登录----成功')

var code = wx.getStorageSync('code')

var appId = wx.getStorageSync('appId')

var openId = wx.getStorageSync('openId')

var token = wx.getStorageSync('token')

console.log(code, appId, openId, token)

})
.catch(function (res) {

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
console.log('失败')

that.login()

  .then(function (res) {

    console.log(res)

    that.getId(res)

      .then(that.$http.spread(function (res1, res2) {

      // 两个请求都完成

        var openId = res1.data.data.open_id

        var token = res2.data.data

        console.log(openId, token)

        wx.setStorageSync('openId', openId)

        wx.setStorageSync('token', token)

        // 最后,调用轮播等接口传进去openId和token,有没有其他封装方法

      }))

      .catch(function (error) {

        console.log(error)

      })

  }).catch(function (err) {

    console.log(err)

  })

})
},
methods: {

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
checkIt () {

  return new Promise((resolve, reject) => {

    wx.checkSession({

      success (res) {

        resolve(res)

      },

      fail (res) {

        reject(res)

      }

    })

  })

},

login () {

  return new Promise((resolve, reject) => {

    wx.login({

      success (res) {

        resolve(res)

      },

      fail (err) {

        reject(err)

      }

    })

  })

},

getId (res) {

  return new Promise((resolve, reject) => {

    // 成功后获取code

    let code = res.code

    console.log('code码是:-->' + code)

    var accountInfo = wx.getAccountInfoSync()

    var appId = accountInfo.miniProgram.appId

    console.log('appId码是:-->' + appId)

    wx.setStorageSync('code', code)

    wx.setStorageSync('appId', appId)

    var url = baseUrl+'/shop/weixin/login?code=' + code + '&appId=' + appId

    var url2 = baseUrl+'/login/userInfo?appId=' + appId



    return this.$http.all([this.getOpenId(url), this.getToken(url2)])

      .then((res1, res2) => {

        resolve(res1, res2)

      })

}

有没有解决方法是,加载完了created后,这些信息存在storage里,在beforeMount里能取到值,而不是都在then里


   



推荐阅读
author-avatar
駱宏艷_230
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有