我正在用TypeScript编写脚本,当我使用browserify进行转换时,在浏览器中找不到我的主变量。

主要

import { GameSmart } from './GameSmart';

const gamesmart = new GameSmart();


gulpfile.js

/* require's snipped */

gulp.task('build', function () {
    return browserify()
        .add('./src/gamesmart/main.ts')
        .plugin(tsify)
        .bundle()
        .on('error', function (error) {
            console.error(error);
            throw error;
        })
        .pipe(source('gamesmart.js'))
        .pipe(gulp.dest('build/'));
});


在我的页面中,我包括新创建的文件,并尝试调用gamesmart变量,但找不到该变量。

<script scr="/path/to/sdk.js">
<script>
    gamesmart.game.started();
</script>


如何使其成为全局/根变量?

最佳答案

我可以通过将变量添加到window来解决此问题。

window['gamesmart'] = new GameSmart();

关于javascript - 在浏览器中找不到Browserify全局变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38104715/

10-09 22:06