在我的反应应用程序中,我从服务器获取一个自定义 javascript 文件并将其作为script
标签附加到document
.
这个新添加的自定义文件包含一个名为manipulator
. 现在在其中一个组件中,我想调用该函数。据我所知,该函数应该存在于window
全局对象中。
if(documnet.getElementById('customJsId')){ // check if the script tag exists in document
window.manipulator(); // which I get Property 'iframeManipulator' does not exist on type 'Window'.ts(2339)
}
但是在这里我得到编译器错误
'Window'.ts(2339) 类型上不存在属性'manipulator'
这是完全合乎逻辑的,但我没有找到一种方法来创建扩展接口window
或任何其他方法来告诉编译器在window
被调用中有一个可选函数manipulator
。
任何帮助表示赞赏。
----------Just in case--how the script is added to document--------------
loadProjectCustomJS() {
runInAction(async () => {
thisfetchProjectJs().then((doc) => {
const body: HTMLBodyElement = document.getElementsByTagName('body')[0];
const customjs: HTMLScriptElement = document.createElement('script');
customjs.type = 'text/javascript';
customjs.id = 'customJsId'
customjs.src = doc.get('resourceUrl');
body.appendChild(customjs);
});
});
}