我正在尝试使用以下命令从文件中导入函数:
<script type='text/javascript'>
import {fn1, fn2} from './file.js';
// here I continue writing my script
</script>
但是我在控制台Uncaught SyntaxError: Unexpected token {
中遇到错误
我尝试了很多事情,
喜欢在单独的./file.js
中导入脚本<script type='module' src='./file.js'>
或在export {fn1, fn2}
的末尾使用file.js
,但没有任何效果...有人可以帮我吗?如何在脚本选项卡中导入一些功能?
答案 0 :(得分:0)
根据Connexo的评论,使用Web Server for Chrome来提供文件。启动应用程序并选择您的工作文件夹,然后转到指定的Web服务器URL,将类似于:http://127.0.0.1:8887
实际上,Chrome在本地托管时将无法使用导入/导出。