小程序
小游戏
企业微信
微信支付
扫描小程序码分享
华为手机 chooseVideo 上传视频文件uploadFile小程序奔溃或者闪退
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请问这个问题解决了吗? 我这里把视频上传到腾讯云也会出现闪退的问题
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
上传接口涉及到实时密钥等问题,无法提供代码片段。
以下代码 传大一点的视频就奔溃或者微信闪退
wx.chooseVideo({
sourceType: [
'album'
,
'camera'
],
compressed:
false
maxDuration: 60,
camera:
'back'
success(res) {
if
(res.duration>300){
wx.showToast({
title:
'视频长度不能大于5分钟~'
icon:
'none'
duration: 2000
})
return
}
var
filePath = res.tempFilePath;
const uploadTask = wx.uploadFile({
url:
'https://xnb-files.oss-cn-beijing.aliyuncs.com'
filePath: filePath,
name:
'file'
formData: {
'key'
: xxxx,
'OSSAccessKeyId'
'policy'
'Signature'
'success_action_status'
:
'200'
},
console.log(res)
error(res) {
console.log(
'wx.uploadFile'
, res)
uploadTask.onProgressUpdate((res) => {
that.setData({
progress: parseInt(res.totalBytesSent * 100 / res.totalBytesExpectedToSend)
出现问题手机
vivo Y69A 微信版本6.73
华为 p8 微信版本6.73
uploadTask.onProgressUpdate 进度跟踪也不准确
图片
其他的手机测试了吗?大一点的会崩溃?具体是多大的?不会崩溃的是多少?
苹果手机都没问题。安卓部分手机也不存在问题。视频 2分多钟,160M
最长拍摄时间也不起作用
你可以试试官方的示例小程序 能不能上传成功
官方是没有uploadfile视频文件的demo的
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请问这个问题解决了吗? 我这里把视频上传到腾讯云也会出现闪退的问题
提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
上传接口涉及到实时密钥等问题,无法提供代码片段。
以下代码 传大一点的视频就奔溃或者微信闪退
wx.chooseVideo({
sourceType: [
'album'
,
'camera'
],
compressed:
false
,
maxDuration: 60,
camera:
'back'
,
success(res) {
if
(res.duration>300){
wx.showToast({
title:
'视频长度不能大于5分钟~'
,
icon:
'none'
,
duration: 2000
})
return
}
var
filePath = res.tempFilePath;
const uploadTask = wx.uploadFile({
url:
'https://xnb-files.oss-cn-beijing.aliyuncs.com'
,
filePath: filePath,
name:
'file'
,
formData: {
'key'
: xxxx,
'OSSAccessKeyId'
: xxxx,
'policy'
: xxxx,
'Signature'
: xxxx,
'success_action_status'
:
'200'
},
success(res) {
console.log(res)
},
error(res) {
console.log(
'wx.uploadFile'
, res)
}
})
uploadTask.onProgressUpdate((res) => {
that.setData({
progress: parseInt(res.totalBytesSent * 100 / res.totalBytesExpectedToSend)
})
})
})
出现问题手机
vivo Y69A 微信版本6.73
华为 p8 微信版本6.73
uploadTask.onProgressUpdate 进度跟踪也不准确
图片
其他的手机测试了吗?大一点的会崩溃?具体是多大的?不会崩溃的是多少?
苹果手机都没问题。安卓部分手机也不存在问题。视频 2分多钟,160M
最长拍摄时间也不起作用
你可以试试官方的示例小程序 能不能上传成功
官方是没有uploadfile视频文件的demo的