18

我的目标是创建一个“编辑帐户”表单,以便用户可以修改他们的帐户数据。我想以已经填充了用户数据(即用户名、电子邮件、地址...)的表单显示帐户数据

然后,用户可以修改表单中的数据并提交将更新其用户信息的表单。

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

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

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

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

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

在我的“编辑帐户”组件中,我通过导入映射 vuex 状态:

import { mapState } from "vuex";

然后在计算属性中使用以下内容

computed: {
    ...mapState(["userProfile"])
}

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

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

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

完整代码:

编辑帐户.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>

商店.js:

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

2 回答 2

22

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

快速解决

在评论中,@Jacob Goh 提到了以下内容:

$store应该在调用数据函数之前准备好。因此,firstName: this.$store.state.userProfile.firstName应该只是工作。

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

真的需要计算吗?

请参阅@bottomsnap 的答案,其中可以在mounted生命周期挂钩中设置初始值。

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

import { mapState } from 'vuex';

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

虽然它可能会在没有值的情况下渲染一次,并在安装后重新渲染。

容器与展示

我在另一个答案中解释了 Vue 的沟通渠道,但这里有一个简单的例子来说明你可以做什么。

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

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>

虽然Jacob 说商店已经准备好,并且this.$store.state.userProfile.firstName会起作用并没有错,但我觉得这更像是一个围绕设计问题的补丁,可以通过上述解决方案轻松解决。

于 2018-06-27T14:16:07.293 回答
11

像以前一样将您的输入与 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
      }
    })
于 2019-03-01T14:19:41.740 回答