HarmonyOS H5如何调扫码功能,请帮忙提供一个demo示例

HarmonyOS
1天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
put_get

1、下载html5-qrcode:npm i html5-qrcode

  1. demo如下:
<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) => {
                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>
分享
微博
QQ
微信
回复
1天前
相关问题
HarmonyOS H5调用原生功能
97浏览 • 1回复 待解决
HarmonyOS h5拉起系统页面的demo
294浏览 • 1回复 待解决
H5原生JSbrige的demo示例
271浏览 • 1回复 待解决
HarmonyOS 能否提供demo代码
79浏览 • 1回复 待解决
HarmonyOS H5如何复用?
222浏览 • 1回复 待解决
HarmonyOS 功能Demo
28浏览 • 1回复 待解决
HarmonyOS 应用涉及H5如何使用?
265浏览 • 1回复 待解决
HarmonyOS 需要demo
53浏览 • 1回复 待解决
HarmonyOS h5上传图片功能,超时
16浏览 • 1回复 待解决
HarmonyOS webview内嵌H5功能异常
95浏览 • 1回复 待解决
HarmonyOS h5 web上传图片,文件的demo
48浏览 • 1回复 待解决
如何调试H5,有人知道吗?
1639浏览 • 1回复 待解决
Web能直接加载h5吗?
3094浏览 • 2回复 待解决
HarmonyOS h5加载二维屏幕变亮
69浏览 • 1回复 待解决