在 HTML5 JavaScript 中,如何从 Sqlite 数据库读取 BLOB 字段并将其用作 Web 应用程序中的内容?
举个例子会很有帮助。我收到了一个包含图像的 Sqlite 数据库,我必须获取它们,然后在我的 webOS 应用程序中使用它们(它只是 JavaScript :-))
我知道如何获取 sql 记录,但如何使用 BLOB数据?
An example would be very helpful. I've been handed a Sqlite db with images in it and I have to get them, then use them in my webOS app (it just JavaScript :-))
I know how to get an sql record, but how do I use the BLOB data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否使用任何服务器端脚本?如果是这样,您可以创建一个文件(例如 image.php),根据 GET 参数获取并输出 BLOB 数据。然后在 HTML 中,您将拥有
Are you using any server-side scripts? If so, you can create a file (e.g. image.php) that fetches and outputs the BLOB data depending on the GET parameters. Then in your HTML, you would have
<img src="image.php?id=11" />