码迷,mamicode.com
首页 > 移动开发 > 详细

vue项目html5调取手机摄像头录像并上传

时间:2018-09-13 20:19:13      阅读:1792      评论:0      收藏:0      [点我收藏+]

标签:card   files   eth   刷脸   one   width   本地   native   cep   

<video id="video" autoplay width="300" height="300" controls></video>
<x-button class="video-btn" type="primary"  @click.native="upBtnFileFace">刷脸验证</x-button>
<input class="file" ref="videoFace" name="file" type="file" accept="video/*" @change="updateFace" style="display: none" />
    
methods: {
  updateFace(e) {
    const file = e.target.files[0] || e.dataTransfer.files[0]
    if (file) {
      // 本地预览
      const reader = new FileReader()
      const myVideo = document.querySelector(#video)
      reader.onloadend = (evt) => {
        myVideo.src = evt.target.result
      }
      reader.readAsDataURL(file)
      myVideo.play()
          
      // 上传
      const fd = new FormData()          
    fd.append(
‘file, file) ocrIdCard(fd).then(response => { if (response) { console.log(response) } }).catch(() => { }) } } }

 

vue项目html5调取手机摄像头录像并上传

标签:card   files   eth   刷脸   one   width   本地   native   cep   

原文地址:https://www.cnblogs.com/jackjo/p/9642137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!