码迷,mamicode.com
首页 > 其他好文 > 详细

根据 vuex 的 this.$store.dispatch() 返回值 处理逻辑

时间:2019-05-28 21:13:06      阅读:4108      评论:0      收藏:0      [点我收藏+]

标签:isp   百度   ret   user   const   false   this   catch   sync   

1. App.vue

  •         const ret = await this.$store.dispatch(‘userLogin‘, {
              username: this.curUserName,
              password: this.curPassword
            })
            if (ret && ret.info) {
              this.$message.success(ret.info)
              await this.$store.dispatch(‘controlLoginDialog‘, false)
            } else {
              this.$message.warning(ret)
            }

2. 

  •   async userLogin ({commit}, account) {
        let userInfo = {}
        return new Promise((resolve, reject) => {
          requestUserLogin(account).then(response => {
            if (response.status === 200) {
              if (response.data.data) {
                userInfo = response.data.data
                userInfo.userName = userInfo.name
                userInfo.isLogin = true
                resolve({
                  info: userInfo.userName + ‘ 登录成功,欢迎进入百度云智学院实验平台‘
                })
              } else if (response.data.fail) {
                userInfo.userName = ‘‘
                userInfo.isLogin = false
                myConsole(‘response.data.fail‘)
                resolve(response.data.fail)
              }
            } else {
              userInfo.userName = ‘‘
              userInfo.isLogin = false
            }
    
            commit(USER_LOGIN, {userInfo})
          }).catch(err => {
            myConsole(err)
            reject(err)
          })
        })
      },

3. 

根据 vuex 的 this.$store.dispatch() 返回值 处理逻辑

标签:isp   百度   ret   user   const   false   this   catch   sync   

原文地址:https://www.cnblogs.com/tianxiaxuange/p/10940222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!