index.html中引入一个下方这种结构的js文件, 但是报错了
const fn = (() => { console.log("jinlaile");})();export default fn;
原因及解决方案:
览器虽然支持了es6,但是不支持es6的Module直接使用,需要在script标签里加上 type=“module”,让浏览器很好的去认识它。
<script type="module" src="js/*.js"></script>
一个关注IT技术分享,关注互联网的网站,爱分享网络资源,分享学到的知识,分享生活的乐趣。
index.html中引入一个下方这种结构的js文件, 但是报错了
const fn = (() => { console.log("jinlaile");})();export default fn;
原因及解决方案:
览器虽然支持了es6,但是不支持es6的Module直接使用,需要在script标签里加上 type=“module”,让浏览器很好的去认识它。
<script type="module" src="js/*.js"></script>
本文链接:http://zhangshiyu.com/post/85755.html
Copyright © 2020-2022 ZhangShiYu.com Rights Reserved.豫ICP备2022013469号-1