- 小程序video标签安卓没有播放按键
<video controls="{{true}}" src="{{baseUrl+item.videoPath}}"></video> [图片]无法播放全屏下也没有播放按键,安卓设备名称[图片],调试基础库[图片],视频源测试过可播放,有时候有播放按键有时候无
2023-08-19 - wx.compressImage压缩后宽高在安卓设备上不生效?
在ios上测试过是可以改变图片分辨率的,到了安卓这里就不行 uni.compressImage({ src: 'filePath', quality: 100, compressedWidth: '489px', compressedHeight: '930px', success: res => { console.log(res.tempFilePath, res, 'file') uni.uploadFile({ url: config.OSS_DOMAIN, filePath: res.tempFilePath, name: 'file', formData: { 'id': this.ids }, success: (uploadFileRes) => { this.notice = "" clearTimeout(this.time) const data = JSON.parse(uploadFileRes.data) if (data.code === 200) { this.$emit('getPhoto', data.data.photo) } else { if (data.code === 1000) { } if (data.code === 3001) { this.apiMsg = data.msg this.count++ this.takePhoto() } } } }); } })
2023-07-03