wx.chooseMedia在iPhoneX(微信版本v7.0.8)上报错,其他机型正常,为什么?
wx.chooseMedia({
count: 9,
mediaType: ['image','video'],
sourceType: ['album'],
maxDuration: 20,
success(res) {
let { tempFiles, type } = res;
}
});
此段代码在iPhoneX上会报错errMsg: "chooseMedia:fail error maxDuration" 删除maxDuration属性后,正常使用. 机型iPhoneX,小程序基础库(2.14.3),(微信版本v7.0.8) 请问是和微信版本有关系吗?maxDuration得在哪个版本后才会兼容?