码迷,mamicode.com
首页 > 其他好文 > 详细

修改 vuex $store.state 里取出的数据不响应

时间:2020-04-03 22:12:30      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:group   lse   orm   map   拷贝   row   响应   creat   const   

一定要先拷贝

 

let { showLabel, actualValue } = this.record;
      let show = this.rowData[showLabel];
      let actual = this.rowData[actualValue];
      const { formGroup } = this.$store.state.right;
      const { dispatch } = this.$store;
      let group = _.cloneDeep(formGroup) // 这一步必须, 如果直接 formGroup.map( ... ) 数据响应不到
      const newFormGroup = group.map(item => {
        if (item.componentx === "modal") {
          item = {
            ...item,
            uniqueKey:createUuid()
          }
          return (item = {
            ...item,
            initValue: show,
            actualValue: actual
          });
        } else {
          return item;
        }
      });
      dispatch("right/updateFormGroup", newFormGroup);
      this.visible = false;

 

修改 vuex $store.state 里取出的数据不响应

标签:group   lse   orm   map   拷贝   row   响应   creat   const   

原文地址:https://www.cnblogs.com/winyh/p/12628925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!