index.html中引入一个下方这种结构的js文件, 但是报错了
const fn = (() => {
console.log("jinlaile");
})();
export default fn;
原因及解决方案:文章来源:https://www.toymoban.com/news/detail-640473.html
览器虽然支持了es6,但是不支持es6的Module直接使用,需要在script标签里加上 type=“module”,让浏览器很好的去认识它。文章来源地址https://www.toymoban.com/news/detail-640473.html
<script type="module" src="js/*.js"></script>
到了这里,关于Uncaught SyntaxError: Unexpected token ‘export‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!