有没有一种正确的方法可以在vuejs中重置组件的初始数据?

2022-08-30 04:36:43

我有一个包含一组特定起始数据的组件:

data: function (){
    return {
        modalBodyDisplay: 'getUserInput', // possible values: 'getUserInput', 'confirmGeocodedValue'
        submitButtonText: 'Lookup', // possible values 'Lookup', 'Yes'
        addressToConfirm: null,
        bestViewedByTheseBounds: null,
        location:{
            name: null,
            address: null,
            position: null
        }
}

这是模式窗口的数据,因此当它显示时,我希望它从此数据开始。如果用户从窗口中取消,我想将所有数据重置为此。

我知道我可以创建一个方法来重置数据,只需手动将所有数据属性设置回其原始属性:

reset: function (){
    this.modalBodyDisplay = 'getUserInput';
    this.submitButtonText = 'Lookup';
    this.addressToConfirm = null;
    this.bestViewedByTheseBounds = null;
    this.location = {
        name: null,
        address: null,
        position: null
    };
}

但这似乎真的很草率。这意味着,如果我对组件的数据属性进行了更改,我需要确保我记得更新重置方法的结构。这并不是绝对可怕的,因为它是一个小的模块化组件,但它让我大脑的优化部分尖叫。

我认为可行的解决方案是获取方法中的初始数据属性,然后使用保存的数据重置组件:ready

data: function (){
    return {
        modalBodyDisplay: 'getUserInput', 
        submitButtonText: 'Lookup', 
        addressToConfirm: null,
        bestViewedByTheseBounds: null,
        location:{
            name: null,
            address: null,
            position: null
        },
        // new property for holding the initial component configuration
        initialDataConfiguration: null
    }
},
ready: function (){
    // grabbing this here so that we can reset the data when we close the window.
    this.initialDataConfiguration = this.$data;
},
methods:{
    resetWindow: function (){
        // set the data for the component back to the original configuration
        this.$data = this.initialDataConfiguration;
    }
}

但是对象随着数据的变化而变化(这是有道理的,因为在读取方法中,我们获取的是数据函数的范围。initialDataConfigurationinitialDataConfiguration

有没有办法在不继承作用域的情况下获取初始配置数据?

我是否过度思考了,并且有更好/更简单的方法可以做到这一点?

对初始数据进行硬编码是唯一的选择吗?


答案 1
  1. 将初始数据提取到组件外部的函数中
  2. 使用该函数在组件中设置初始数据
  3. 在需要时重用该函数来重置状态。

// outside of the component:
function initialState (){
  return {
    modalBodyDisplay: 'getUserInput', 
    submitButtonText: 'Lookup', 
    addressToConfirm: null,
    bestViewedByTheseBounds: null,
    location:{
      name: null,
      address: null,
      position: null
    }
  }
}

//inside of the component:
data: function (){
    return initialState();
} 


methods:{
    resetWindow: function (){
        Object.assign(this.$data, initialState());
    }
}

答案 2

注意,不要将上下文绑定到 data() 中。Object.assign(this.$data, this.$options.data())

所以使用这个:

Object.assign(this.$data, this.$options.data.apply(this))

cc 这个答案原来是在这里