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

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

確保我的函數(shù)返回變異對(duì)象作為同一類打字稿的實(shí)例?

確保我的函數(shù)返回變異對(duì)象作為同一類打字稿的實(shí)例?

export const FilterUndefined = <T extends object>(obj: T): T => {  return Object.entries(obj).reduce((acc, [key, value]) => {    return value ? { ...acc, [key]: value } : acc;  }, {}) as T;};我正在遷移數(shù)據(jù)庫和清理舊數(shù)據(jù)結(jié)構(gòu)的一部分,一些鍵的一些值最終是字面的undefined。密鑰仍然存在并具有價(jià)值undefined我制作了這個(gè)函數(shù),但是在用它修改了一個(gè)類對(duì)象后,它將不再是同一個(gè)類的實(shí)例。我怎樣才能讓它返回一個(gè)與輸入?yún)?shù)是同一類的實(shí)例的對(duì)象?as T 使 TS 編譯器閉嘴,僅此而已。我還嘗試獲取該對(duì)象的原型和return new prototype(obj)或return new prototype.constructor(obj)原型的控制臺(tái)日志如下所示:PROTOTYPE TestClass {}我正在使用此設(shè)置進(jìn)行測(cè)試:  it('should return the same type that it receives', () => {    class TestClass {      name: string;      optionalProperty?: any;    }    let testObject = new TestClass();    testObject.name = 'My Name';    testObject.optionalProperty = undefined;    console.log(testObject instanceof TestClass);    testObject = FilterUndefined(testObject);    console.log(testObject instanceof TestClass);    console.log(testObject);    expect(testObject).instanceOf(TestClass);  });編輯:JSFiddle:https ://jsfiddle.net/3sdg98xt/2/ 但從 vscode復(fù)制粘貼沒有任何問題運(yùn)行它我得到一個(gè)錯(cuò)誤'execpted expression, got';'
查看完整描述

2 回答

?
qq_笑_17

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

此解決方案將通過刪除具有未定義值的鍵來改變輸入對(duì)象。


function removeUndefined <T>(object: T): T {

    for (const id in object) {

       if (object[id] === undefined) {

          delete object[id];

       }

    }

    return object;

}

它似乎適用于您的測(cè)試用例:Test in typescript playground


查看完整回答
反對(duì) 回復(fù) 2022-01-20
?
侃侃爾雅

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

是的,每次迭代reduce都會(huì)返回一個(gè) new{}實(shí)例Object。


因此,要使返回對(duì)象與參數(shù)具有相同的實(shí)例,您應(yīng)該進(jìn)行以下更改。


export const FilterUndefined = (obj) => {

return Object.entries(obj).reduce((acc, [key, value]) => {

    if (value) {acc[key] = value;}

    else {delete acc[key]}

    return  acc;

  }, new obj.constructor);

};

或者您可以new obj.__proto__.constructor根據(jù)target您正在使用的打字稿輸出使用。


如果您對(duì)此代碼段有打字稿問題,請(qǐng)回復(fù)。


查看完整回答
反對(duì) 回復(fù) 2022-01-20
  • 2 回答
  • 0 關(guān)注
  • 181 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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