最新基础库版本,在线客服接收不到信息。最新ios系统,包括IDE中
测试wx.chooseImage()回调返回的res.tempFilePath无法作为image标签的src属性来显示图片,亲测有bug
现在返回的tempFilePath临时路径无法在image标签中显示出来
image>
view>
block>
view>
求助各路大神,尽快修复这个bug,多谢
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
// 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
var tempFilePaths = res.tempFilePaths
}
})
chooseUploadImages: function (e) {
wx.chooseImage({
count: 9,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success: (res) => {
console.log(res);
// console.log(this.data.uploadImages.concat(res.tempFilePaths));
this.setData({
uploadImages: this.data.uploadImages.concat(res.tempFilePaths),
});
// App.util.uploadMultiImages({
// })
for (var i = 0, len = this.data.uploadImages.length; i < len; i++) {
wx.saveFile({
tempFilePath: res.tempFilePaths[i],
success: (res) => {
console.log(res);
}
})
}
}
})
},
VM2324:2 Failed to load image http://tmp/wx3ca2e94afa79a416.o6zAJswbPoA-0ObCJxyveCQOnPtg.23e7c558dddb6528e05e811ddc576abc.png
the server responded with a status of 404 (HTTP/1.1 404 Not Found)
From server 127.0.0.1
(anonymous) @ VM2324:2
VM2326:1 Thu Jan 11 2018 17:10:32 GMT+0800 (中国标准时间) 渲染层网络层错误
VM2326:2 Failed to load image http://tmp/wx3ca2e94afa79a416.o6zAJswbPoA-0ObCJxyveCQOnPtg.c04ff7d0b9a4374aa8d31495e904acad.png
the server responded with a status of 404 (HTTP/1.1 404 Not Found)
From server 127.0.0.1
wx.chooseImage({
count: 1, // 默认9
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) { // 返回选定照片的本地文件路径列表,tempFilePath可以作为img标签的src属性显示图片
var tempFilePaths = res.tempFilePaths
}
})
微信小程序开发相关问题解答;本文来自微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
松***:
遇到一样的问题了。
但安卓手机上测试是可以显示的。
。***:
。。。。这问题 在百度上有个解决办法 但是有点麻烦 我就干脆 用个canvas算了
小游戏 InnerAudioContext 音量设置在安卓实机下无效。
本文网址:http://www.91bianli.com/kaifazhinan/72378.html