Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

vuex actions传值问题

vue版本2.2.2, vue版本2.2.1

// actions代码
const actions = {
    updateUser ({ commit }, { username }) {
        console.log(arguments)
        commit(types.UPDATE_USER, { username })
    },
}
// 组件中调用actions
this.$store.dispatch({
    type: 'updateUser',
    username: 'hhhh'
})

实际运行,发现actions.updateUser方法接受到三个参数,第三个是undefined

报错信息:Uncaught Error: [vuex] Expects string as the type, but found undefined.

why?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...