子对象从对象传播到父对象

时间:2019-05-21 23:59:29

标签: vue.js quasar-framework

我有一个带有列下拉列表的表,而不是为每个表创建对象(即数据:{col1:{},..}),而是有一个对象对象,该对象在“创建”时初始化并填充。 >

因此,我遇到的问题是,当传递给子道具的对象是来自对象对象的对象时,子组件无法正确传播对父组件的更改。

仅供参考,可通过axios检索tableData。 我正在使用类星体和Vue。

最初,我有一个对象传递给子组件,并且能够使sync修改器正常工作。然后继续制作对象对象并传递到每一列。

子组件selectionList中的

console.log(this.selected)打印为空。

注意:这是一个包含根本问题的示例。

table.vue #parent

<q-table
  row-key="id"
 :tableData
 :columns
 :visible-columns="visibleColumns">
 <q-tr slot="top-row" slot-scope="props">
  <q-td v-for="col in visibleColumns">
   <child-component 
    :selected.sync="dropDownSelected[col]"
    :options="dropDownOptions[col]"
     />
  </q-td>
 </q-tr>
</q-table>

<script>
import ChildComponent from 'path/to/child-component.vue';
export default{
 name: 'table',
 components: {
  'child-component': ChildComponent
 },
 data(){
  return{
    tableData: [{id: 1, col1: 'a', col2: 'b', col3: 'c'}],
    columns: [
     {name: 'col1', label: 'Col1', field: 'col1'},
     {name: 'col2', label: 'Col2', field: 'col2'},
     {name: 'col3', label: 'Col3', field: 'col3'},
    ],
    visibleColumns: ['col1', 'col2'],
    dropDownSelected: {},
    dropDownOptions: {}
  }
 },
 created() {
  this.initializeDropDown();
  this.populateTableSelect();
 },
 methods: {
  initializeDropDown(){
   for(var col in this.columns){
    this.dropDownSelected[col.name] = [];
    this.dropDownOptions[col.name] = [];
   }
  },
  populateTableSelect(){
    // initiallize all columns with new Set
    var tmp_set = {};
    for(var col in this.dropDownOptions){
     tmp_set[col] = new Set();
    }
    // iterate row, add items to set
    for(var row = 0; row < this.tableData.length; row++){
     for(var col in this.dropDownOptions){
      tmp_set[col].add(this.tableData[row][col]);
     }
    }
    for (var col in this.dropDownOptions) {
     tmp_set[col] = [...tmp_set[col]];
     tmp_set[col].sort();
     tmp_set[col] = tmp_set[col].map(item => ({ label: item, value: item }));
     tmp_set[col].unshift({ label: 'Select All', value: 'Select All' });
     this.dropDownOptions[col] = tmp_set[col];
    }
  }
 },
}
</script>

child-component.vue

<q-select
 multiple
 :options="options"
 :value="selected"
 @input="selectionList">
</q-select>

<script>
export default{
 name: 'child-component',
 props: {
  options: {type: Array, required: true},
  selected: {type: Array, default: () => ([])},
  allValue: { type: String, default: 'Select All' }
 },
 methods: {
  selectionList(inputList){
    // logic below used from outside source
    if (inputList.find(item => item === this.allValue)){
     if(this.selected.find(item => item === this.allValue)){
      // case 1: one item is unchecked while 'all' is checked -> unchecks 'all' + keep other
      inputList.splice(inputList.indexOf(this.allValue), 1);
      this.$emit('update:selected', inputList);
     }
     else {
      // case 2: 'all' is checked -> select-all
      this.$emit('update:selected', this.options.map(option => option.value));
     }
    }
    else {
     if(this.selected.find(item => item === this.allValue)){
     // case 3: unchecking 'all' -> clear selected
      this.$emit('update:selected', []);
     }
     else{
      if(inputList.length === this.options.length -1){
       // case 4: len is equal to options -> select-all
       this.$emit('update:selected', this.options.map(option => option.value));
      }
      else {
       // case 5: check an item
       this.$emit('update:selected', inputList);
      }
     }
    }
   },
 },
}
</script>

我希望从一个对象的一个​​对象传递一个对象将允许“全选”逻辑传播到父对象。

我看不到任何错误,因此我不知道js在做什么。

1 个答案:

答案 0 :(得分:0)

据我所见,这是documentation中解释的一个简单的反应性问题。 dropDownOptionsdropDownSelected是您要在其上添加新键的对象。每次这样做时,您都需要致电this.$set

我认为,如果仅更改此方法,那就应该不错:

initializeDropDown(){
  for(var col in this.columns){
    this.$set(this.dropDownSelected, col.name, []);
    this.$set(this.dropDownOptions, col.name, []);
  }
},