ThreeJS – three.moudle.js报Uncaught SyntaxError:Unexpected token ‘export‘错误
1 Uncaught SyntaxError:Unexpected token 'export'
在script语句块中引入threejs总是在浏览器的console中出现错误: three.moudle.js报Uncaught SyntaxError:Unexpected token 'export'错误,
引入语句如下:
<script src="./JS/Utils/threejs/build/three.js"></script>
<script src="./JS/Utils/threejs/build/three.module.js" ></script>
后来发现使用src引入js文件时,默认不能使用module形式,需要在script标签上加上type=module属性来改变方式。
所以将引入语句修改如下:
<script src="./JS/Utils/threejs/build/three.js"></script>
<script src="./JS/Utils/threejs/build/three.module.js" type="module"></script>
修改引入方式之后浏览器错误消除。
本文作者:StubbornHuang
版权声明:本文为站长原创文章,如果转载请注明原文链接!
原文标题:ThreeJS – three.moudle.js报Uncaught SyntaxError:Unexpected token ‘export‘错误
原文链接:https://www.stubbornhuang.com/1329/
发布于:2021年05月08日 10:34:44
修改于:2023年06月26日 21:36:07
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论
50