vue-babylonjs icon indicating copy to clipboard operation
vue-babylonjs copied to clipboard

can't load gtlf model

Open julczka opened this issue 4 years ago • 3 comments

Hi,

Great library, works perfect, but I cant load a gtlf model. I'm getting something like this in the console Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0

can anyone please help?

julczka avatar Dec 02 '19 17:12 julczka

Could you please share a reproducible example on something like glitch.com? You can use the following template as a starting point: https://glitch.com/~vue-babylonjs-starter

BrainBacon avatar Dec 13 '19 19:12 BrainBacon

Could you please share a reproducible example on something like glitch.com? You can use the following template as a starting point: https://glitch.com/~vue-babylonjs-starter

Hi, Great library, works perfect, but I cant load a babylon scene. I used to use BABYLON.SceneLoader.Load in H5,it was worked.

BABYLON.SceneLoader.Load("../scenes/highway/", "Highway.babylon", engine, function(__scene) {
    scene = __scene;
    console.log("Success Loaded Scene");
    allowInit = true;
});

But i use vue

<template>
	<cover-view>
		<Scene>
			<Asset src="./scenes/highway/Highway.babylon" :scaling="[0.02,0.02,0.02]" :position="[4,0.5,0]"></Asset>
		</Scene>
	</cover-view>
</template>
<script>
	import Vue from 'vue';
	import vb from 'vue-babylonjs';
	Vue.use(vb);
	export default {
		components: {
		},
		data() {
			return {
			};
		},
		watch: {
		},
		mounted() {
		},
		onUnload() {
		}
	}
</script>

it was not worked , and the console was:

babylonFileLoader.ts:109 Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0
    at JSON.parse (<anonymous>)
    at loadAssetContainer (babylonFileLoader.ts:109)
    at Object.loadAssetContainer (babylonFileLoader.ts:787)
    at sceneLoader.ts:889
    at dataCallback (sceneLoader.ts:388)
    at XMLHttpRequest.onReadyStateChange (tools.ts:915)

I also tried gtlf file, the error still existed.

glTFFileLoader.ts:582 Uncaught (in promise) SyntaxError: Unexpected token < in JSON at position 0
    at JSON.parse (<anonymous>)
    at glTFFileLoader.ts:582
    at <anonymous>

My babylon&gltf file was both JSON. I need your help too.Thaks

H-Whisky avatar Feb 27 '20 07:02 H-Whisky

如果你使用的是vue+webpack那你应该使用相对路径来加载你的文件,文件放到public里面(然后页面直接在src里面写'/autostore.obj')

zhanghaifei1997 avatar Apr 20 '22 03:04 zhanghaifei1997