6

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

        }
    }
}

ありがとう!火星

4

1 に答える 1

10

宣言されていることをコンパイラに伝える必要があります。

declare var selfGlobal: any;
于 2013-07-20T18:25:12.710 に答える