uniapp在企业微信不能录制视频
- 发布:2022-04-25 16:55
- 更新:2023-01-06 10:49
- 阅读:754
FullStack - 【插件开发】【专治疑难杂症】【ios上架、马甲包、白包、过审、已成功上架过几百个】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=22130】【非诚勿扰】QQ:543610866
弹窗控件内容,是你自己写的吧?
BoredApe - 有问题就会有答案。
<input type="file" accept="video/*" capture="environment" />
或者
const fileDom = document.createElement('input');
fileDom.type = 'file';
fileDom.accept = 'video/*';
fileDom.capture = 'environment';
fileDom.value = '';
fileDom.style.height = '0';
fileDom.style.width = '0';
fileDom.style.position = 'absolute';
fileDom.style.opacity = 0;
(document.querySelector('uni-app') || document.body).appendChild(fileDom);
fileDom.click();
襄阳老农 (作者)
我自己直接写个按钮使用 uni.chooseVideo 这个方法也是这个弹窗
2022-04-25 17:11