Three.js GLTFLoader 无法在我的计算机上加载 gltf 文件
Three.js GLTFLoader cant load gltf files on my computer
我刚开始使用 three.js、JavaScript、html 和 CSS,我正在加载 3d 模型。当我在线提取 gltf 文件时,我有一个程序正在运行,例如:
loader.load('https://threejsfundamentals.org/threejs/resources/models/cartoon_lowpoly_small_city_free_pack/scene.gltf', function ( gltf )
{console.log(gltf);
scene.add( gltf.scene );
}, undefined, function ( error ) {console.error( error );} );
但是当我尝试从我的计算机中提取 gltf 文件时它不起作用,例如:
loader.load('C:\Models\scene.gltf', function ( gltf )
{console.log(gltf);
scene.add( gltf.scene );
}, undefined, function ( error ) {console.error( error );} );
知道我做错了什么吗?我也在用dreamweaver
Web 浏览器无法从本地磁盘加载图像或模型等文件(除非您禁用安全限制)。要解决此问题,您必须在开发期间 运行 本地服务器,请参阅 three.js 文档中的 how to run things locally。
我刚开始使用 three.js、JavaScript、html 和 CSS,我正在加载 3d 模型。当我在线提取 gltf 文件时,我有一个程序正在运行,例如:
loader.load('https://threejsfundamentals.org/threejs/resources/models/cartoon_lowpoly_small_city_free_pack/scene.gltf', function ( gltf )
{console.log(gltf);
scene.add( gltf.scene );
}, undefined, function ( error ) {console.error( error );} );
但是当我尝试从我的计算机中提取 gltf 文件时它不起作用,例如:
loader.load('C:\Models\scene.gltf', function ( gltf )
{console.log(gltf);
scene.add( gltf.scene );
}, undefined, function ( error ) {console.error( error );} );
知道我做错了什么吗?我也在用dreamweaver
Web 浏览器无法从本地磁盘加载图像或模型等文件(除非您禁用安全限制)。要解决此问题,您必须在开发期间 运行 本地服务器,请参阅 three.js 文档中的 how to run things locally。