我已經學會了使用IIFE構造模塊。簡單的例子:如何執行這些javascript模塊模式?
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'
我想了解導入和導出IIFE模塊使用ECMAScript 6個模塊出口和進口。我安裝了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)
什麼是我的問題嗎?我的語法錯了嗎?
不幸的是,由於自動分號插入,'return'不能像預期的那樣按照預期工作。 '{getHeight:getHeight}'永遠不會被返回。您需要將大括號'{'放在'return'的同一行上。 – 4castle
非常感謝那個@ 4castle – henrybbosa
順便說一句,即使你不親自使用'class'語法,它仍然會有一些好處來適應它們。我自己避免使用'class'語法(因爲我也避免了原型繼承),但它們在行業中相當普遍。 – 4castle