ES2015 导入在 Firefox 中不起作用(即使在顶级)下面的原始答案
2022-08-30 04:56:00
这些是我的示例文件:
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script src="t1.js"></script>
</head>
<body></body>
</html>
t1.js:
import Test from 't2.js';
t2.js:
export const Test = console.log("Hello world");
当我在Firefox 46中加载页面时,它返回“SyntaxError:导入声明可能只出现在模块的顶层” - 但我不确定import语句可以在这里获得更多的顶级。此错误是否是红鲱鱼,并且是否根本不支持导入/导出?