vue 首次登陆成功进入页面获取不到store值?

作者站长头像
站长
· 阅读数 6
computed: {
    ...mapState({
        userInfo: (state) => state.user.userInfo,
    }),
},

首次登录进入页面时,这个值在页面上可以获取到

<div class="wl-left">
   <span>{{userInfo.username}}:</span>
</div>

但是在方法里面调用却是 undefined

async getTopTenData(params) {
    let data;
    this.searchLoading = true
    try {
        data = await getCommTime({
            account: this.userInfo.username,
            dimension: this.activeToggle,
            params
        })
    } catch (error) {
        throw new Error(error)
    } finally {
        this.searchLoading = false
    }
    return { data: data.comm_task_list }
},

求教?

----------------------------补充-------------------------这是store里面获取的username,并保存到localStorage里面:

const actions = {
  getUserInfo({
    commit,
    dispatch,
    state
  }) {
    axios({
      method: 'get',
      url: '/gateway/api/userInfo',
      headers: {
        'admin-gateway-token': state.token
      }
    }).then(res => {
      const {
        data,
        code,
        msg
      } = res.data
      if (code === 0) {
        localStorage.setItem('userInfo', data.username)
        commit('SET_USERINFO', data)
      } else {
        console.log('获取人员信息失败:', res)
        if (res.data.code === 2000) {
          dispatch('app/logOut', {}, {
            root: true
          })
        }
        Message({
          type: 'error',
          message: '获取人员信息失败:' + msg
        })
      }
    }, res => {
      Message({
        type: 'error',
        message: '获取人员信息失败:' + res
      })
    })
  },
回复
1个回答
avatar
test
2024-06-21
      if (code === 0) {
        localStorage.setItem('userInfo', data.username)
        commit('SET_USERINFO', data)
      } else {

改成:

      if (code === 0) {
        localStorage.setItem('userInfo', data)
        commit('SET_USERINFO', data)
      } else {
回复
likes
适合作为回答的
  • 经过验证的有效解决办法
  • 自己的经验指引,对解决问题有帮助
  • 遵循 Markdown 语法排版,代码语义正确
不该作为回答的
  • 询问内容细节或回复楼层
  • 与题目无关的内容
  • “赞”“顶”“同问”“看手册”“解决了没”等毫无意义的内容