我在html header 中声明了一个全局变量,并希望从模块内部的类中引用它。如何防止编译器错误:

错误TS2095:找不到符号'selfGlobal'。

<html>
    <head>
        <script>
        var selfGlobal = this;
        var globalVariable = 1;
        </script>
    </head>
    <body>
    <script src="test.js"></script>
    </body>
</html>

在test.ts中
module Test{
    export class TestClass {
        private _privateVariable:any;
        constructor() {
            this._privateVariable = selfGlobal.globalVariable; // compile error throws here, but the code can run

        }
    }
}

谢谢!
火星

最佳答案

您需要告诉编译器它已经被声明:

declare var selfGlobal: any;

10-05 20:51
查看更多