我在打字稿文件中有一个“获取”功能,我需要在其他javascript文件中使用此功能。有办法实现吗?
我试图在函数名称前写上“ static”和“ public”,但这没用。
答案 0 :(得分:-1)
您可以声明一个HostListener
组件代码:
@HostListener('window:yourFunction', ['$event','$event.detail.type'])
yourInternalFunction(event,param) {
//do something
}
在js文件上
window.dispatchEvent(new CustomEvent('yourFunction', {detail:{type:1}}));