- camera wx.stopRecord拿不到返回的结果成功失败都木有?代码是官方的案例代码,没改动
camera wx.stopRecord拿不到返回的结果成功失败都木有?代码是官方的案例代码,没改动,好多安卓各种问题,有的start,有的stop有的还闪退!!!!!! 手机型号看右边图 是锤子手机 代码是官方的例子 Page({ onLoad() { this.ctx = wx.createCameraContext() }, takePhoto() { console.log(0) this.ctx.takePhoto({ quality: 'high', success: (res) => { this.setData({ src: res.tempImagePath }) } }) }, startRecord() { console.log(1) this.ctx.startRecord({ success: (res) => { console.log('startRecord') } }) }, stopRecord() { console.log(2); this.ctx.stopRecord({ success: (res) => { console.log(28,res) this.setData({ src: res.tempThumbPath, videoSrc: res.tempVideoPath },()=>{ console.log(778) }) } }) }, error(e) { console.log(e.detail) } }) [图片]
2021-05-31 - onShareAppMessage异步调用分享?
[图片] 已经异步调用了,苹果iphone XR就是不行,分享的一直是默认的当前页面A,我需要分享的出去别人点击的是我分享出去的页面B,到底怎么解决呢???其他手机都可以
2021-05-12 - onShareAppMessage错误?
本来想在A页面分享出去B页面 这样用户打开应该直接进入B页面 ,但是实际情况是还是进入的A页面 [图片]
2021-05-10 - webview嵌套h5h5里WeixinJSBrideg exec time7是什么错误?
h5里WeixinJSBrideg exec time7是什么错误?
2021-04-06 - 微信小程序嵌套h5,这个h5页面可以做分享邀请给微信好友吗?分享给微信好友,点去是嵌套h5的小程序?
微信小程序嵌套h5,这个h5页面可以做分享邀请给微信好友吗?分享给微信好友,点去是嵌套h5的小程序?
2021-03-23 - 使用 wx.chooseVideo安卓手机说无权限?
wx.chooseVideo({ sourceType: ['camera'], maxDuration: 30, camera: 'front', compressed: true, success(res) { if (res.errMsg === "chooseVideo:ok") { if (res.duration < 3) { wx.showToast({ title: "拍摄视频太短,请重新拍摄", icon: 'none', duration: 2000 }); return; }; if (res.duration >= 30) { wx.showToast({ title: "拍摄视频太长,请重新拍摄", icon: 'none', duration: 2000 }); return; }; wx.showLoading({ title: '加载中...', mask: true }); console.log(277,res,res.tempFilePath) that.uploadFile(res.tempFilePath) } else { wx.hideLoading(); wx.showToast({ title: "视频上传失败,请重新拍摄上传", icon: 'none', duration: 2000 }); } }, fail(res) { wx.hideLoading(); wx.showToast({ title: "视频上传失败,请重新拍摄上传", icon: 'none', duration: 2000 }); } })
2021-01-27 - camera 拍视频太卡太慢 并且image不能覆盖在上面?
手机系统是安卓。在8.0.0版本,image不可以盖camera上。并且点击开始和点击结束很卡很慢 点击结束没反应,不同的安卓手机反应不同!!!机型是华为的各种
2021-01-26 - input file在安卓手机onchange不起作用,是怎们回事?
input file在安卓手机onchange不起作用,是怎们回事? 华为各种系列
2021-01-14 - 小程序可以做一个视频录制的功能吗?
小程序可以做一个视频录制的功能吗?视频的录制的界面可以自定义的那种,视频页面有文字可以引导用户读取的那种
2020-12-08 - 微信小程序贷款项目活体必须调用微信小程序的方式不可以h5嵌套input拍视频嘛?
微信小程序贷款项目活体必须调用微信小程序的方式不可以h5嵌套input拍视频嘛?
2020-11-11