3
我想附加窗口對象的屬性。這是我的代碼。TypeScript索引對象類型的簽名隱式地有類型任何
cbid:string ='someValue';
window[cbid] = (meta: any) => {
tempThis.meta = meta;
window[cbid] = undefined;
var e = document.getElementById(cbid);
e.parentNode.removeChild(e);
if (meta.errorDetails) {
return;
}
};
編譯器開始拋出以下錯誤。對象的
打字稿指數簽名類型隱含的類型爲任何
誰能告訴我在哪裏,我做了錯誤?