微信开发者工具1.02.1909232
wx.request({
url: '', //仅为示例,并非真实的资源
responseType:'text',
dataType:'json',
success(moduleres) {
console.log(moduleres);
console.log(moduleres.data);
console.log(moduleres.data.byteLength);
var load = new THREE.FBXLoader();
module = load.parse(moduleres.data);
module.position.z = -10;
module.rotation.x = Math.PI * 0.5;
module.scale.set(0.01, 0.01, 0.01);
scene.add(module);
}
})
打印出来的moduleres.data.byteLength一直是undefined,这是什么回事?
你把接口返回的数据截图看看
moduleres数据:
moduleres.data:
我加载了一个fbx模型。
moduleres.data不是数组吧,或者是空
有数据打印
我加载了一个fbx模型
moduleres.data
里面是有数据的。