亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Vue.$set失效問題怎么解決

發布時間:2022-03-24 10:47:05 來源:億速云 閱讀:575 作者:iii 欄目:web開發

這篇“Vue.$set失效問題怎么解決”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Vue.$set失效問題怎么解決”文章吧。

Vue.$set失效

Vue.$set失效問題怎么解決

有這樣一個需求 添加數據過濾用 左邊是控件選擇 中間是條件 右邊是值

因為會根據控件不同渲染不同的值選項控件

<el-form inline >
      <el-form-item style="margin-bottom: 20px;">
        <el-select v-model="data[props.prop]" @change="data[props.value] = """>
          <el-option
            v-for="item in controls"
            :key="item.id"
            :value="item.id"
            :label="item.label">
          </el-option>
        </el-select>
      </el-form-item>
      <el-form-item style="margin-bottom: 20px;">
        <el-select v-model="data[props.type]">
          <el-option
            v-for="item in condition"
            :key="item.code"
            :value="item.code"
            :label="item.name"
          ></el-option>
        </el-select>
      </el-form-item>
      <el-form-item style="margin-bottom: 20px;">
        <FormControl v-if="control" :control="control" :value="data[props.value]" @input="onValueChange" ></FormControl>
        <el-input v-else :value="data[props.value]" @input="onValueChange"></el-input>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" icon="el-icon-plus" @click="add"></el-button>
      </el-form-item>
    </el-form>
{
  props:{
    props: {
      type: Object,
      default: () => ({
        prop: "prop",
        value: "value",
        type: "type"
      })
    }
  },
  data(){
    return {
      data:{
        
      }
    }
  },
  methods:{
    onValueChange(val){
      this.$set(this.data, this.props.value, val)
    }
  }
  //...
}

代碼片段

由于控件ID的不確定性 所有 data并不能提前預設好key  自然無法響應 所以在onValueChange 使用了this.$set動態添加數據實現響應

Vue.$set失效問題怎么解決

復現可以發現 值輸入框內的數據并不能實時響應

明明用了$set卻不能響應 一番排查后發現只要切換控件后 value值就不能響應 但是只要在切換前隨便輸入點啥 再切換就沒問題

又是一番排查后發現

<el-select v-model="data[props.prop]" @change="data[props.value] = """>

刪除@change事件后故障解決

問題出現在 data[props.value] = ""

遂查看Vue源碼

//vue/src/core/observer/index.js 源碼片段 
 
/**
 * Set a property on an object. Adds the new property and
 * triggers change notification if the property doesn"t
 * already exist.
 */
export function set (target: Array<any> | Object, key: any, val: any): any {
  if (process.env.NODE_ENV !== "production" &&
    (isUndef(target) || isPrimitive(target))
  ) {
    warn(`Cannot set reactive property on undefined, null, or primitive value: ${(target: any)}`)
  }
  if (Array.isArray(target) && isValidArrayIndex(key)) {
    target.length = Math.max(target.length, key)
    target.splice(key, 1, val)
    return val
  }
  if (key in target && !(key in Object.prototype)) {
    target[key] = val
    return val
  }
  const ob = (target: any).__ob__
  if (target._isVue || (ob && ob.vmCount)) {
    process.env.NODE_ENV !== "production" && warn(
      "Avoid adding reactive properties to a Vue instance or its root $data " +
      "at runtime - declare it upfront in the data option."
    )
    return val
  }
  if (!ob) {
    target[key] = val
    return val
  }
  defineReactive(ob.value, key, val)
  ob.dep.notify()
  return val
}

可以發現 在defineReactive之前 判斷了key是否存在于對象之內 若存在就跳過了

坑就在這 多次翻閱Vue.$set文檔并未發現$set不能為已存在的key添加監測對象

刪除 data[props.value] = ""  改為 onValueChange("") 完美解決問題

Vue.$set失效問題怎么解決

以上就是關于“Vue.$set失效問題怎么解決”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

民权县| 隆尧县| 桃江县| 白朗县| 若尔盖县| 奉新县| 新昌县| 蓝田县| 华安县| 丽江市| 修武县| 西昌市| 台东县| 黑河市| 长岛县| 孝昌县| 汉川市| 巫溪县| 永仁县| 左贡县| 杂多县| 安宁市| 德保县| 平果县| 汝南县| 新安县| 澳门| 二连浩特市| 肥东县| 古交市| 商南县| 原平市| 西充县| 常熟市| 安多县| 土默特左旗| 新巴尔虎左旗| 卢湾区| 丰都县| 瓦房店市| 柳江县|