html5项目实现扫描二维码功能

  发布时间:2023-10-07 16:25:11   作者:浮桥   我要评论
扫描二维码是很常见的一种功能,本文就来介绍一下html5项目实现扫描二维码功能,具有一定的参考价值,感兴趣的可以了解一下
(福利推荐:【腾讯云】服务器最新限时优惠活动,云服务器1核2G仅99元/年、2核4G仅768元/3年,立即抢购>>>:9i0i.cn/qcloud

(福利推荐:你还在原价购买阿里云服务器?现在阿里云0.8折限时抢购活动来啦!4核8G企业云服务器仅2998元/3年,立即抢购>>>:9i0i.cn/aliyun

实现原理:调取手机摄像头扫一扫功能实现
注:调取手机摄像头需要再https协议下才可以,有的项目启动配置https:true可以实现启动的项目协议为https且可以访问,有的还是需要证书才能访问

实现

1、下载html5-qrcode

npm i html5-qrcode

2、使用

<template>
    <div class="container" v-show="isShow">
      <div id="reader"></div>
    </div>
</template>
<script setup>
import { reactive, onMounted, onUnmounted, ref } from 'vue'
import { showToast  } from 'vant';
import { Html5Qrcode } from 'html5-qrcode'
let html5QrCode = ref(null)
onMounted(() => {
  getCameras()
})
const onSearchOrder = () => {
    console.log('在运运单')
    router.push('order')
}
onUnmounted(() => {
    stop()
})
const getCameras = () => {
    Html5Qrcode.getCameras()
        .then((devices) => {
            if (devices && devices.length) {
                isShow.value = true
                html5QrCode = new Html5Qrcode('reader')
                // start开始扫描
                start()
            }
        })
        .catch((err) => {
            // handle err
            console.log('获取设备信息失败', err) // 获取设备信息失败
            showToast('获取设备信息失败')
        })
}
const start = () => {
    html5QrCode
        .start(
            {facingMode: "environment" },
            {
                fps: 20, // 设置每秒多少帧
                qrbox: { width: 250, height: 250 } // 设置取景范围
                // scannable, rest shaded.
            },
            (decodedText, decodedResult) => {
            	alert('扫码结果' + decodedText)
            },
            (errorMessage) => {
                // parse error, ideally ignore it. For example:
                // console.log(`QR Code no longer in front of camera.`);
                console.log('暂无额扫描结果', errorMessage)
            }
        )
        .catch((err) => {
            // Start failed, handle it. For example,
            console.log(`Unable to start scanning, error: ${err}`)
        })
}
const stop = () => {
    if (devicesInfo.value) {
        html5QrCode
            .stop()
            .then((ignore) => {
                // QR Code scanning is stopped.
                console.log('QR Code scanning stopped.', ignore)
            })
            .catch((err) => {
                // Stop failed, handle it.
                console.log('Unable to stop scanning.', err)
            })
    }
}
</script>
<style lang="scss" scoped>
.container {
    position: relative;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    background: rgba($color: #000000, $alpha: 0.48);
    z-index: 999;
}
#reader {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
</style>

到此这篇关于html5项目实现扫描二维码功能的文章就介绍到这了,更多相关html5扫描二维码内容请搜索程序员之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持程序员之家! 

相关文章

最新评论

?


http://www.vxiaotou.com