我学会了使用IIFE构建模块。简单的例子:
export test_module = (function{
var name = "henry";
var age = 26;
var height ="6 monthe";
var getHeight = function()
{
return height;
}
return{
getHeight : getHeight
}
}());
我有另一个文件
import {test_module} from './test_module'
我想学习使用ECMAScript 6模块导出和导入导入和导出IIFE模块。我安装了Babel的转换器。但是当我导出我的模块并尝试将其导入另一个文件时,我收到一条错误消息:
(function (exports, require, module, __filename, __dirname) { import {text_module} from './test_module'
^^^^^^
SyntaxError: Unexpected token import
at createScript (vm.js:56:10)
at Object.runInThisContext (vm.js:97:10)
at Module._compile (module.js:542:28)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:393:7)
at startup (bootstrap_node.js:150:9)
我的问题是什么?我的语法有错吗?
答案 0 :(得分:3)
Babel报道,您有语法错误。而不是
export test_module =
你必须说
export const test_module =
无论如何,ES6模块使旧的IIFE风格的“模块”过时(相当多)。只需写下
// my-module.js
export function getHeight() {
var name = "henry";
var age = 26;
var height = "6 monthe";
return height;
}
或者,如果您愿意
function getHeight() {
var name = "henry";
var age = 26;
var height = "6 monthe";
return height;
}
export { getHeight };
然后,当你想要使用它时:
import { getHeight } from './my-module';
getHeight();
或
import * as myModule from './my-module';
myModule.getHeight();
至于你对课程的咆哮,我不明白它与你的问题有什么关系。如果您不喜欢ES6中的类,请不要使用它们。类与ES6模块无关,除了可以导出和导入任何其他值类的明显事实。