app端cubeTextureLoader加载本地图片失败,h5正常
报错详情:
loader onError:, /static/test_r.jpg at utils/index.js:27 at app-view.js:586
export function cubeTextureLoader(path, array) {
return new Promise((resolve, reject) => {
let loader = new THREE.CubeTextureLoader();
loader.setPath(path);
loader.load(array, res => {
console.log("loader.load",res)
resolve(res);
});
// 这里报错!!!!!!!!!!!!!!!!!,但是H5是正常的
loader.manager.onError = function(res) {
console.error('loader onError:', res)
reject(res);
}
})
}
2 个回复
乐赚 - 玩完
给钱,平台专员负责,否则做梦吧,免费给你用还那么多事
DCloud_heavensoft
这是很常见的平台兼容问题,你用的库是for web库,不是全端库。https://uniapp.dcloud.net.cn/matter.html