为了账号安全,请及时绑定邮箱和手机立即绑定

vuex actions传值问题

vuex actions传值问题

森栏 2018-09-01 17:09:18
vue版本2.2.2, vue版本2.2.1// actions代码const actions = {    updateUser ({ commit }, { username }) {        console.log(arguments)        commit(types.UPDATE_USER, { username })    },}// 组件中调用actionsthis.$store.dispatch({    type: 'updateUser',    username: 'hhhh'})实际运行,发现actions.updateUser方法接受到三个参数,第三个是undefined报错信息:Uncaught Error: [vuex] Expects string as the type, but found undefined.why?
查看完整描述

1 回答

?
回首忆惘然

TA贡献1847条经验 获得超11个赞

{username} 应该没有括号吧 。{}里好像包裹的是接收过来的context对象里的内容,如commit,state,getters

updateUser ({ commit }, username){
    // ...
}


查看完整回答
反对 回复 2018-09-09
  • 1 回答
  • 0 关注
  • 2167 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信