选择图片,返回图片类型错误
选择GIF图片,返回类型错误
第一种方式
wx.chooseImage({
success: function (res) {
var tempFilePaths = res.tempFilePaths
console.log(tempFilePaths[0].path); //后缀jpg
}
})
第二种方式
wx.chooseImage({
success: function (res) {
wx.getImageInfo({
src: res.tempFilePaths[0],
success: function (res){
console.log(res.type) //类型为jpeg
}
})
}
})