首页 > 解决方案 > 如何使用 vue.js 从 Promise 中的方法更新数据值?

问题描述

我的组件脚本是:

export default {
  name: "Authenticate",
  data: () => {
    return {
      validationFailed: {}
    };
  },
  methods: {
    validateForm() {
      this.validationFailed = {};
      if (this.createEmail.trim().length === 0) {
        this.validationFailed.createEmailField = "Email cannot be blank. ";
      }

      if (this.createPassword.trim().length === 0) {
        this.validationFailed.createPasswordField =
          "Password cannot be blank. ";
      }

      if (Object.keys(this.validationFailed).length === 0) {
        return true;
      }

      return false;
    },
    handleSubmit() {
      const that = this;
      axios
        .request({
          url: `${process.env.VUE_APP_API_URL}/users`,
          method: "POST",
          data: {
            email: this.createEmail,
            password: this.createPassword
          }
        })
        .then(response => {
          console.log(response);
        })
        .catch(err => {
          that.validationFailed.createEmailField = "something";
        });
    }
  }
};

但是在 catch 里面debugger,我可以看到值被设置了。但在我template的 中,validationFailed没有更新。我究竟做错了什么?

标签: javascriptvue.jspromise

解决方案


这是 Vue 反应性问题。您需要分配this.validationFailed给新对象。您可以在 catch 块中尝试 ES6 语法:

that.validationFailed = {
    ...that.validationFailed,
    createEmailField: 'something'
}

推荐阅读