0

我有一个模块模式的 vuex 来获取用户的数据:

存储/模块/users.js

import axios from "axios";

export const state = () => ({
  user: {}
});

// Sets the values of data in states
export const mutations = {
  SET_USER(state, user) {
    state.user = user;
  }
};

export const actions = {
  fetchUser({ commit }, id) {
    console.log(`Fetching User with ID: ${id}`);
    return axios.get(`${process.env.BASE_URL}/users/${id}`)
      .then(response => {
        commit("SET_USER", response.data.data.result);
      })
      .catch(err => {
        console.log(err);
      });
  }
};

// retrieves the data from the state
export const getters = {
  getUser(state) {
    return state.user;
  }
};

然后在我的模板页面/用户/_id/index.vue

<b-form-input v-model="name" type="text"></b-form-input>

export default {
  data() {
    return {
      name: ""
    }
  },
  created() {
    // fetch user from API
    this.$store.dispatch("fetchUser", this.$route.params.id);
  }
}

现在我检查我有对象getUser的吸气剂,我可以看到该属性。如何将 vuex getter 中的名称值分配给输入字段?

4

2 回答 2

2

watcher可能是你需要的

export default {
  // ...
  watch: {
    '$store.getters.getUser'(user) {
      this.name = user.name;
    },
  },
}
于 2019-01-03T09:23:45.010 回答
0

虽然 Jacob 的回答不一定不正确,但最好使用计算属性。你可以在这里阅读

  computed: {
    user(){
        return this.$store.getters.getUser
    }
  }

然后通过访问名称{{user.name}}或创建名称计算属性

  computed: {
    name(){
        return this.$store.getters.getUser.name
    }
  }

编辑:以小提琴为例https://jsfiddle.net/uy47cdnw/

Edit2:如果您想通过该输入字段改变对象,请不要使用 Jacob 提供的链接。

于 2019-01-03T09:50:35.917 回答