标签: javascript import module ecmascript-6 export
我正在尝试使用ES6模块在浏览器中导出和导入对象。
我试过了
import { options } from 'options';
但我收到错误Uncaught SyntaxError: Unexpected token import。
Uncaught SyntaxError: Unexpected token import
然后我尝试将其转换,但现在我收到错误Uncaught ReferenceError: require is not defined。
Uncaught ReferenceError: require is not defined
是否无法在浏览器中使用模块?
答案 0 :(得分:-1)
您可能希望根据system.js查看http://jspm.io/。
希望有所帮助..