从React TypeScript组件调用外部Javascript函数

时间:2018-11-30 12:49:00

标签: javascript reactjs typescript redux

我有一个带有打字稿的react redux应用程序。 所以场景是这样的,我有一个包含一些javascript的index.cshtml文件。

<script type="text/javascript">
    function test() {
        alert('Function from index.html');
    }
</script>

现在在我的react组件上,在componentWillMount()函数中的Main.tsx上,我想调用测试函数。

componentWillMount() {
    window.test();
}

但这对我不起作用。 消息是在类型窗口

上不存在测试

非常感谢您的帮助。

3 个答案:

答案 0 :(得分:4)

您可以像这样扩展Window界面:

interface Window {
    test(): void;
}

在模块中执行此操作时,需要确保它是要扩展的全局Window接口:

declare global {
    interface Window {
        test(): void;
    }
}

这为编译器提供了类型实现。

答案 1 :(得分:0)

我建议在这里使用一些Utility类。据我了解,您需要一些可以在其他组件中使用的功能。因此,最好的方法是使用静态方法创建Util类。或类似这样的模块:

export default {
  test() {
    console.log('foo'); 
  }, ...

};

答案 2 :(得分:0)

如果确定您具有全局变量。您可以在键入文件夹中键入自定义文件。

interface Window {
    test: () => void
}

如果您使用eslint,还应该将 test 设置为 globals 配置选项。