uni.chooseVideo({
sourceType:['camera'],
count: 1,
success:function(res){ //返回的是对象
thisVm.filUpload(res.tempFilePath,'3')
},
fail:function(e){
console.log(e)
uni.showToast({
title:'操作失败',
icon: 'none',
duration: 2000
})
}
})
- 发布:2023-12-20 15:00
- 更新:2023-12-20 15:00
- 阅读:79
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 64
HBuilderX类型: 正式
HBuilderX版本号: 3.8.12
手机系统: Android
手机系统版本号: Android 9.0
手机厂商: 小米
手机机型: MI CC 9
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
示例代码:
操作步骤:
uni.chooseVideo({
sourceType:['camera'],
count: 1,
success:function(res){ //返回的是对象
thisVm.filUpload(res.tempFilePath,'3')
},
fail:function(e){
console.log(e)
uni.showToast({
title:'操作失败',
icon: 'none',
duration: 2000
})
}
})
uni.chooseVideo({
sourceType:['camera'],
count: 1,
success:function(res){ //返回的是对象
thisVm.filUpload(res.tempFilePath,'3')
},
fail:function(e){
console.log(e)
uni.showToast({
title:'操作失败',
icon: 'none',
duration: 2000
})
}
})
预期结果:
调用摄像功能后可以走success 正常返回图片信息
调用摄像功能后可以走success 正常返回图片信息
实际结果:
再调用上传视频功能后,才能调用录像功能正常返回。
再调用上传视频功能后,才能调用录像功能正常返回。
bug描述:
只调用录像功能走fail 错误信息是 {
"0": "n",
"1": "u",
"2": "l",
"3": "l",
"errMsg": "chooseVideo:fail cancel",
"errCode": 0,
"code": 0
}
0 个回复