vuex中的数据如何设置初始值?

How to set initial values for data from vuex?

我的目标是创建一个 'edit account' 表单,以便用户可以修改他们的帐户数据。我想以已经填满用户数据的形式显示帐户数据,即用户名、电子邮件、地址...

然后用户可以修改表单中的数据并提交此表单以更新他们的用户信息。

我正在使用 v-model 将表单输入绑定到我数据中名为 accountInfo 的对象,如下所示:

data() {
    return {
        accountInfo: {
                firstName: ''
        }
    }
}

下面是我的模板中的表单输入示例:

<input v-model.trim="accountInfo.firstName" type="text" class="form-control" id="first-name" />

对象中键的值当前是空字符串,但我希望这些值来自一个名为 userProfile 的对象,它是 属性 中的一个状态vuex。

在我的 'edit account' 组件中,我通过导入映射 vuex 状态:

import { mapState } from "vuex";

然后在计算 属性

中使用以下内容
computed: {
    ...mapState(["userProfile"])
}

我想做的不是将空字符串作为 accountInfo 的值,而是从 vuex 映射的 userProfile 属性 中为它们分配值,如下所示:

data() {
        return {
            accountInfo: {
                    firstName: this.userProfile.fristName,
            }
        }
    }

这将为我的表单提供所需的初始数据,但不幸的是这不起作用,大概是因为数据在生命周期中比计算属性更早呈现。

完整代码:

EditAccount.vue

<template>
    <div class="container-fluid">
        <form id="sign_up_form" @submit.prevent>
            <div class="form-row">
                <div class="form-group col-md-6">
                    <input v-model.trim="signupForm.firstName" type="text" class="form-control" id="first_name" />
                </div>
            </div>
        </form>
    </div>
</template>

<script>
import { mapState } from "vuex";
import SideBar from "../common/SideBar.vue";

export default {
  name: "EditAccount",
  computed: {
    ...mapState(["userProfile"])
  },
  data() {
    return {
      accountInfo: {
        firstName: this.userProfile.firstName
      }
    };
  }
};
</script>

store.js:

export const store = new Vuex.Store({
    state: {
        userProfile: {firstName: "Oamar", lastName: "Kanji"}
    }
});

你是对的,computeds 是在调用初始 data 函数后计算的。

快速修复

在评论中,以下内容:

$store should be ready before data function is called. Therefore, firstName: this.$store.state.userProfile.firstName should just work.

export default {
  name: 'EditAccount',
  data() {
    return {
      accountInfo: {
        firstName: this.$store.state.userProfile.firstName
      }
    }
  }
};

真的需要计算吗?

参见 ,其中可以在 mounted 生命周期挂钩中设置初始值。

使用您的代码,它看起来像这样:

import { mapState } from 'vuex';

export default {
  name: 'EditAccount',
  computed: {
    ...mapState(['userProfile'])
  },
  data() {
    return {
      accountInfo: {
        firstName: ''
      }
    }
  }
  mounted() {
    this.accountInfo.firstName = this.userProfile.firstName;
  }
};

虽然可能渲染一次没有值,挂载后重新渲染。

容器与展示

我会解释 ,但这里有一个简单的示例说明您可以做什么。

将表单组件视为表示逻辑,因此它不需要了解商店,而是将配置文件数据作为道具接收。

export default {
    props: {
        profile: {
            type: Object,
        },
    },
    data() {
        return {
            accountInfo: {
                firstName: this.profile.firstName
            }
        };
    }
}

然后,让父级处理业务逻辑,以便从商店获取信息、触发操作等

<template>
    <EditAccount :profile="userProfile" :submit="saveUserProfile"/>
</template>
<script>
import { mapState, mapActions } from "vuex";

export default {
    components: { EditAccount },
    computed: mapState(['userProfile']),
    methods: mapActions(['saveUserProfile'])
}
</script>

虽然 this.$store.state.userProfile.firstName 会起作用,但我觉得这更像是一个围绕设计问题的补丁,可以通过上述解决方案轻松解决。

像往常一样将您的输入与 v-model 绑定:

<div id="app">
    <input type="text" v-model="firstName">
</div>

使用挂载的生命周期钩子设置初始值:

import Vue from 'vue';
import { mapGetters } from 'vuex';

new Vue({
      el: "#app",
      data: {
        firstName: null
      },
      computed: {
        ...mapGetters(["getFirstName"])
      },
      mounted() {
        this.firstName = this.getFirstName
      }
    })