zoukankan      html  css  js  c++  java
  • elcheckboxの惊天BUG之 vmode 你和JSON.parse(JSON.stringify(obj))有仇?

    0. the begin of love river

    抄了个大佬的代码,然后我发现el-select上的v-model一直不生效,加个@change监视下值的变化,发现值变了!但el-select上的显示一直不变。

    1. f**k road

    image

    v-model 稳如泰山 鼠标都快点烂了,显示是不变的

              <el-checkbox
                @change="lookWhichOne(item.code,$event)"
               :checked="form[`${item.code}Checked`]"
                >{{ item.value }}</el-checkbox
              >
    

    这时候可以改变checkbox选中状态了,但是下方el-select的v-model值依旧没有更新

    image

    3. Really solved method

    好的,看到这里,小伙伴们就要问了,解决方法是什么捏!

    实际上,是this.form的地址有问题!

    前面我都是直接用的这个

    this.form = JSON.parse(JSON.stringify(val));

    我也不知道为什么地址就变得很诡异,让v-model找不到了

    所以得这样

              // v-model CANNOT watch the changed value
              // this.form = JSON.parse(JSON.stringify(val));
    
              // Only seperate
              this.form.menuAlias = val.menuAlias;
              this.form.menuName = val.menuName;
              this.form.chartType = val.chartType;
              this.form.dateType = val.dateType;
              this.form.position.start = val.position.start;
              this.form.position.rowSpan = val.position.rowSpan;
              this.form.position.colSpan = val.position.colSpan;
    
    

    image

  • 相关阅读:
    NHibernate介绍
    dwr配置文件dwr.xml详解
    架构设计师与SOA
    SOA是什么
    JDK常用命令
    在WPF的WebBrowser控件中抑制脚本错误
    通过编程计算一个游戏的胜率
    在C#中模拟大数乘法
    解决HttpWebRequest首次连接特别慢的问题
    布隆过滤器(Bloom Filter)
  • 原文地址:https://www.cnblogs.com/lepanyou/p/15639021.html
Copyright © 2011-2022 走看看