第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

vue computed 計(jì)算屬性當(dāng)依賴(lài)屬性更新時(shí)計(jì)算屬性沒(méi)有執(zhí)行?

vue computed 計(jì)算屬性當(dāng)依賴(lài)屬性更新時(shí)計(jì)算屬性沒(méi)有執(zhí)行?

飲歌長(zhǎng)嘯 2018-07-06 13:13:48
computed: {         comp: function () {                 return () => import(`./component/item${this.formItem.item_type}.form`);     } },當(dāng)我切換this.formItem.item_type的值,comp沒(méi)有被觸發(fā)computed: {     comp: function () {             console.log(this.formItem.item_type)             return () => import(`./component/item${this.formItem.item_type}.form`);     } },當(dāng)我加上console.log(this.formItem.item_type)時(shí),正常觸發(fā),注釋掉又不能正常觸發(fā),這是為什么呢?另外:我使用watch去監(jiān)聽(tīng) 正常了watch:{         'formItem.item_type': function (val, oldVal) {             this.comp = () => import(`./component/item${this.formItem.item_type}.form`);     } },補(bǔ)充this.formItem對(duì)象
查看完整描述

2 回答

?
繁華開(kāi)滿(mǎn)天機(jī)

TA貢獻(xiàn)1816條經(jīng)驗(yàn) 獲得超4個(gè)贊

因?yàn)橹挥心阍谟?jì)算屬性?xún)?nèi)訪問(wèn)了相應(yīng)的變量, 計(jì)算屬性才能形成對(duì)其的依賴(lài).

a = () => import(`./component/item${this.formItem.item_type}.form`);

當(dāng) a 函數(shù)沒(méi)有調(diào)用時(shí), this.formItem.item_type 是不會(huì)被求值的, 也就一直沒(méi)有被訪問(wèn)過(guò), 所以無(wú)法被計(jì)算屬性收集為依賴(lài), 你 console.log(this.formItem.item_type) 觸發(fā)了 this.formItem.item_type 的訪問(wèn), 完成了依賴(lài)收集, 自然沒(méi)有問(wèn)題.

還有, 像這種永遠(yuǎn)不會(huì)被執(zhí)行的代碼, 也無(wú)法被收集依賴(lài).

if (false) {
 a = this.formItem.item_type
}

解決方案:

comp: function () {    // 顯示的取值, 使 comp 收集依賴(lài)
    this.formItem.item_type;  
    return () => import(`./component/item${this.formItem.item_type}.form`);
}


查看完整回答
反對(duì) 回復(fù) 2018-07-12
?
縹緲止盈

TA貢獻(xiàn)2041條經(jīng)驗(yàn) 獲得超4個(gè)贊

先看一下 this.formItem.item_type 是不是響應(yīng)式吧。用開(kāi)發(fā)者工具展開(kāi)到這一步,如果是 (...) 或者下面有淺色的 get/set 就是,不然的話,這個(gè)變量并未被觀察,所以沒(méi)有響應(yīng)式。

查看完整回答
反對(duì) 回復(fù) 2018-07-12
  • 2 回答
  • 0 關(guān)注
  • 3710 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)