1 Star 0 Fork 0

刘文创/智慧校园

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
toQRcode.html 2.27 KB
一键复制 编辑 原始数据 按行查看 历史
刘文创 提交于 2021-09-04 17:15 . 提交 智慧校园 实训项目
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no, maximum-scale=1.0, minimum-scale=1.0"
/>
<title>扫描二维码</title>
<!-- 引入初始化样式文件 -->
<link rel="stylesheet" href="css/normalize.css" />
<!-- 引入vue.min.js文件 -->
<script src="js/vue.min.js"></script>
<!-- 引入vueQRcode.js文件 -->
<script src="js/VueQrcodeReader.umd.min.js"></script>
</head>
<body>
<div id="app">
<p>上次结果: <b>{{ decodedContent }}</b></p>
<p class="error">{{ errorMessage }}</p>
<qrcode-stream @decode="onDecode" @init="onInit"></qrcode-stream>
</div>
<script>
new Vue({
el: "#app",
data() {
return {
decodedContent: "",
errorMessage: "",
};
},
methods: {
onDecode(content) {
this.decodedContent = content;
},
onInit(promise) {
promise
.then(() => {
console.log("成功初始化! 准备扫描!");
})
.catch((error) => {
if (error.name === "NotAllowedError") {
this.errorMessage = "嘿!我需要你的相机";
} else if (error.name === "NotFoundError") {
this.errorMessage = "你的设备上有摄像头吗?";
} else if (error.name === "NotSupportedError") {
this.errorMessage = "需要https协议地址 (HTTPS, localhost or file://)";
} else if (error.name === "NotReadableError") {
this.errorMessage = "无法访问您的相机。 它已经被使用了吗?";
} else if (error.name === "OverconstrainedError") {
this.errorMessage =
"约束条件与任何已安装的摄像头都不匹配。 尽管没有前置摄像头,您是否要求过前置摄像头?";
} else {
this.errorMessage = "UNKNOWN ERROR: " + error.message;
}
});
},
},
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wenchuang_code/smart-campus.git
git@gitee.com:wenchuang_code/smart-campus.git
wenchuang_code
smart-campus
智慧校园
master

搜索帮助