从模块引用全局变量

时间:2013-07-20 16:55:15

标签: javascript typescript

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

错误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

        }
    }
}

谢谢! 火星

1 个答案:

答案 0 :(得分:10)

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

declare var selfGlobal: any;
相关问题