(A-Frame) 本地 gltf 不会加载;无法读取未定义的 属性 'slice'

(A-Frame) local gltf wont load; Cannot read property 'slice' of undefined

我从 A-Frame School in which a gltf model is loaded. Then I loaded the Sample Models from Khronos, this box 中获取代码并尝试加载它,但出现此错误(多次)

GLTFLoader.js:979 Uncaught (in promise) TypeError: Cannot read property 'slice' of undefined
at GLTFLoader.js:979
at i (GLTFLoader.js:570)
at GLTFLoader.js:975
at <anonymous>

我可以加载 .obj 模型并尝试了多个版本的模型,但总是出现错误。
示例代码确实在本地工作,这意味着它正确加载模型,从 aframe cdn 获取它。

这是完成代码

<!DOCTYPE html>
<html>
  <head>
    <title>glTF Model</title>
    <meta name="description" content="glTF Model">
    <script src="https://rawgit.com/aframevr/aframe/b395ea0/dist/aframe-master.min.js"></script>
  </head>
  <body>
    <a-scene>
      <a-assets>
        <a-asset-item id="boxModel" src="Box.gltf"></a-asset-item>
      </a-assets>          
      <a-gltf-model src="#boxModel"></a-gltf-model>
    </a-scene>
  </body>
</html>  

这些模型在 2.0 文件夹中,这意味着您需要 glTF v2.0 加载程序。 A-Frame 0.5.0/0.6.0 支持 glTF v1。但 glTF v2 将在 A-Frame 0.7.0 中得到支持,但您可以使用来自 Don McCurdy 的 gltf-model-next

https://github.com/donmccurdy/aframe-extras/blob/master/src/loaders/gltf-model-next.js

或者您可以从 1.0 文件夹中获取不同的模型:https://github.com/KhronosGroup/glTF-Sample-Models/tree/master/1.0

将 Aframe 版本替换为:

<script src="https://aframe.io/releases/0.7.1/aframe.min.js"></script>