我做了一个区块链的钱包.使用 vue 和SDAG jssdk
演示地址 https://the-fucking-monkeys.github.io/#/
源码在 https://github.com/the-fucking-monkeys
目前能收款能付款,但是摄像头不好使.
使用的是 vue-qrcode-reader 这款 vue 库.
涉及到调动摄像头的代码是:
<template>
<div class="scan">
<h1>Scan</h1>
<qrcode-stream @decode="onDecode"></qrcode-stream>
</div>
</template>
<style scoped>
</style>
<script>
import { QrcodeStream, QrcodeDropZone, QrcodeCapture } from "vue-qrcode-reader";
export default {
components: {
QrcodeStream,
QrcodeDropZone,
QrcodeCapture
},
methods: {
onDecode(decodedString) {
console.log(decodedString);
}
}
};
</script>
谁知道为什么不能访问摄像头?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.