用GLTFLoader加载从web地址下载存入**wx.env.USER_DATA_PATH**的gltf模型提示 frequest:ail invalid url "wxfile://XXX"。 我将源代码 **function _isRelativePath(url) { return !(/^(http|https|ftp|wxfile):\/\/.*/i.test(url)); }** 改为 **function _isRelativePath(url) { return !(/^(http|https|ftp):\/\/.*/i.test(url)); }** 才可以。