小程序
小游戏
企业微信
微信支付
扫描小程序码分享
chooseMedia:fail MEDIA_ELEMENT_ERROR: Format error 急急急!很急。好几天没解决了。
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
下载1.06.2306010
这个版本的开发者工具然后拍摄限制必须少于或等于10秒,pc就可以上传视频了
提供一下能复现的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
uni.chooseMedia({
count: 3, //上传图片的数量,默认是9
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], //从相册选择
maxDuration:15,
camera: 'back',
success: (res) =>{
console.log(11111)
console.log(res.tempFiles[0].size)
this.zpimg = res.tempFiles[0].tempFilePath; //拿到选择的图片,是一个数组
this.zp=false;
uni.uploadFile({
url: this.app_path_url+'api/Comm/uploadSrc',
filePath:this.zpimg,
name:'files',
success: (res) => {
this.videos = this.app_path_url+res.data
// this.videos=res.data
if(this.videos.length>8){
this.zp_show=false
}
console.log(this.videos);
},
})
}
});
},
下载1.06.2306010
这个版本的开发者工具然后拍摄限制必须少于或等于10秒,pc就可以上传视频了
提供一下能复现的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
uni.chooseMedia({
count: 3, //上传图片的数量,默认是9
sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
sourceType: ['album', 'camera'], //从相册选择
maxDuration:15,
camera: 'back',
success: (res) =>{
console.log(11111)
console.log(res.tempFiles[0].size)
this.zpimg = res.tempFiles[0].tempFilePath; //拿到选择的图片,是一个数组
this.zp=false;
uni.uploadFile({
url: this.app_path_url+'api/Comm/uploadSrc',
filePath:this.zpimg,
name:'files',
success: (res) => {
this.videos = this.app_path_url+res.data
// this.videos=res.data
if(this.videos.length>8){
this.zp_show=false
}
console.log(this.videos);
},
})
}
});
},