linjin
linjin
  • 发布:2024-11-08 10:32
  • 更新:2024-11-08 10:32
  • 阅读:27

iphone8 , ios14,uni.chooseVideo 选择图库的视频没有回调呢,但是录制视频就有

分类:uni-app

choosevideo(){
let that = this;
uni.chooseVideo({
sourceType: ['album', 'camera'], // 可选择的视频来源
camera: 'back', // 默认使用后置摄像头,可以指定front为前置
maxDuration: 60, // 最大视频录制时长(秒)
success: function (res) {
// 获取视频的临时路径
console.log('视频的临时路径:' + res.tempFilePath);
that.linshivideo = res.tempFilePath;
UPLOAD_IMAGES({
filePath: res.tempFilePath,
name: 'file', // 必须填写,后台用来接收文件
}).then(res => {
// 上传成功
that.csvideolist = res.data.src;
})
.catch(e => {
that.videoshibai = e;
});
},
fail: function (err) {
console.log('调用 chooseVideo 接口失败:' + err.errMsg);
that.linshivideo = err;
}
});
},

2024-11-08 10:32 负责人:无 分享
已邀请:

要回复问题请先登录注册