我正在使用 ECMAScript 6 编写一些前端代码(使用 BabelJS 进行编译,然后使用 Browserify 进行浏览),以便我可以在一个文件中拥有一个类,将其导出并导入另一个文件。
我这样做的方式是:
export class Game {
constructor(settings) {
...
}
}
然后在导入我所做的类的文件上:
import {Game} from "../../lib/pentagine_browserified.js";
var myGame = new Game(settings);
然后我用 编译它grunt
,这是我的Gruntfile
:
module.exports = function(grunt) {
"use strict";
grunt.loadNpmTasks('grunt-babel');
grunt.loadNpmTasks('grunt-browserify');
grunt.initConfig({
"babel": {
options: {
sourceMap: false
},
dist: {
files: {
"lib/pentagine_babel.js": "lib/pentagine.js",
"demos/helicopter_game/PlayState_babel.js": "demos/helicopter_game/PlayState.js"
}
}
},
"browserify": {
dist: {
files: {
"lib/pentagine_browserified.js": "lib/pentagine_babel.js",
"demos/helicopter_game/PlayState_browserified.js": "demos/helicopter_game/PlayState_babel.js"
}
}
}
});
grunt.registerTask("default", ["babel", "browserify"]);
};
但是,在new Game(
通话中,我收到以下错误:
Uncaught TypeError: undefined is not a function
因此,我所做的是分析 Babel 和 Browserify 生成的代码,我在以下位置找到了这一行PlayState_browserified.js
:
var Game = require("../../lib/pentagine_browserified.js").Game;
我决定打印require
输出:
console.log(require("../../lib/pentagine_browserified.js"));
它只是一个空的对象。我决定检查pentagine_browserified.js
文件:
var Game = exports.Game = (function () {
似乎它正在正确导出类,但由于某些其他原因,其他文件不需要它。
另外,我确定该文件是正确需要的,因为更改字符串"../../lib/pentagine_browserified.js"
会产生Not Found
错误,因此我确定它是正确的文件。