什么是<script type="importmap">以及为什么我突然需要它才能使我的代码正常工作?
<script type="importmap">
{
"imports": {
"three": "https://example.com/3dstuff/three.module.js"
}
}
</script>
Run Code Online (Sandbox Code Playgroud)
以前,我只写这个,Three.js 就可以工作,但现在如果没有 importmap,这部分就无法工作:
<script type="module"> import * as THREE from "https://example.com/3dstuff/three.module.js";
Run Code Online (Sandbox Code Playgroud)