Vuex - 将多个参数传递给突变

Vuex - passing multiple parameters to mutation

我正在尝试使用 vuejs 和 laravel 的护照对用户进行身份验证。

我不知道如何发送多个通过动作传递给 vuex 突变的参数。

- 商店 -

export default new Vuex.Store({
  state: {
    isAuth: !!localStorage.getItem('token')
  },
  getters: {
    isLoggedIn(state) {
      return state.isAuth
    }
  },
  mutations: {
    authenticate(token, expiration) {
      localStorage.setItem('token', token)
      localStorage.setItem('expiration', expiration)
    }
  },
  actions: {
    authenticate: ({
      commit
    }, token, expiration) => commit('authenticate', token, expiration)
  }
})

-登录方式-

login() {
  var data = {
    client_id: 2,
    client_secret: '**************************',
    grant_type: 'password',
    username: this.email,
    password: this.password
  }
  // send data
  this.$http.post('oauth/token', data)
    .then(response => {
      // send the parameters to the action
      this.$store.dispatch({
        type: 'authenticate',
        token: response.body.access_token,
        expiration: response.body.expires_in + Date.now()
      })
    })
}

如有任何帮助,我将不胜感激!

Mutations 需要两个参数:statepayload,其中商店的当前状态由 Vuex 本身作为第一个参数传递,第二个参数包含您需要传递的任何参数。

pass a number of parameters is to destruct them最简单的方法:

mutations: {
    authenticate(state, { token, expiration }) {
        localStorage.setItem('token', token);
        localStorage.setItem('expiration', expiration);
    }
}

然后在稍后的操作中,您可以简单地

store.commit('authenticate', {
    token,
    expiration,
});

简单来说,您需要将有效负载构建到键数组中

payload = {'key1': 'value1', 'key2': 'value2'}

然后将payload直接发送到action

this.$store.dispatch('yourAction', payload)

您的操作没有变化

yourAction: ({commit}, payload) => {
  commit('YOUR_MUTATION',  payload )
},

在你的突变中用键调用值

'YOUR_MUTATION' (state,  payload ){
  state.state1 = payload.key1
  state.state2 =  payload.key2
},

我认为这可以很简单 假设您在阅读时将多个参数传递给操作,操作仅接受两个参数 contextpayload,这是您要在操作中传递的数据,所以让我们举个例子

设置操作

而不是

actions: {
        authenticate: ({ commit }, token, expiration) => commit('authenticate', token, expiration)
    }

actions: {
        authenticate: ({ commit }, {token, expiration}) => commit('authenticate', token, expiration)
    }

调用(调度)动作

而不是

this.$store.dispatch({
                  type: 'authenticate',
                  token: response.body.access_token,
                  expiration: response.body.expires_in + Date.now()
              })

this.$store.dispatch('authenticate',{
                  token: response.body.access_token,
                  expiration: response.body.expires_in + Date.now()
              })

希望这会有所帮助