1 Uncaught SyntaxErrorUnexpected 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>

修改引入方式之后浏览器错误消除。