如何将QRCode数据扫描到浏览器中?
我正在编写一个网站应用程序,希望用户能够使用二维码扫描仪将数据输入到表单中。有没有办法将扫描仪连接到 PC,扫描后将 QRCode 中的数据输入到表单中?我在想可能需要某种 JavaScript。
I am writing a website application and would like users to be able to input data into forms using a QR Code scanner. Is there a way to have a scanner hooked up to a PC that will input the data from the QRCode into a form after being scanned? I was thinking some kind of javascript might be required.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定是否需要拥有“QR 扫描仪”,但替代方案是使用网络摄像头。
使用网络摄像头,用户将二维码放在摄像头前,您的网络应用程序将扫描它。通常它是通过将 Flash 应用程序嵌入到您的网络应用程序中来完成的,该应用程序可以连接到网络摄像头。
以下是几个示例(请注意,它们使用的不是 QR 标签,而是一些通用的 2D 条形码):
Esquire
http://www.esquire.com/the-side/augmented-reality
美国邮政局
http://thistimewithfeeling.com/augmented-reality-web-30 -the-next-big-thing
在您的场景中,您将需要在您的 Web 应用程序中实现某种 QR 阅读器来将数据解析为您的表单(而不是像 3D 渲染/跟踪那样)上面的链接)
Not sure if it is a requirement to have a "QR scanner", but alternative will be to use a webcam.
With webcam, user will position QR code in front of camera and your web application will scan it. Usually it is done by embedding Flash app into your webapp, that can connect to webcam.
Here are couple of examples (please, note they use not QR tags, but some generic 2D barcodes):
Esquire
http://www.esquire.com/the-side/augmented-reality
USPS
http://thistimewithfeeling.com/augmented-reality-web-30-the-next-big-thing
In your scenario, you will need some kind of QR reader implemented in your web app to parse data into your form (instead of 3D rendering/tracking as in links above)