import导入类时报错:Uncaught SyntaxError: Unexpected identifier

Promise.js

export default class Promise{}

index.js

import Promise from './Promise.js'  // Uncaught SyntaxError: Unexpected identifier

index.html

<script src="./index.js"></script>

查找到解决方案为:
在index.html文件中,script标签中添加 type="module" 属性。

<script type="module" src="./index.js"></script>

解析:
inport和export是ES6新增的语法糖。浏览器需要使用

你可能感兴趣的:(#,JavaScript,Module加载,浏览器Module加载,html加载ES6)