我应该将 IndexedDB 用于网络应用程序吗?

发布于 2024-10-21 07:37:52 字数 1432 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖鼻大婶 2024-10-28 07:37:52

IndexedDB API的主要用途是在浏览器端本地存储数据,以便支持离线模式,例如。您应该能够阅读已下载的邮件。这将使事情变得更快并减少网络延迟。

如果我理解正确的话,您想要的是用于测验的便携式存储设备。您不希望学生在回答问题之前知道正确答案。现在如果你想让他们回答然后评估答案,那么indexedDB不是一个解决方案。它将让学生编写代码/脚本来从数据库获取数据并作弊。

Main usage of IndexedDB API is to store data locally on browser side, so that offline mode is supported, for eg. you should be able to read your already downloaded mails. This will make things faster and reduce network latency.

If I understand correctly what you want is a portable storage for quizzing. You do not want students to know the correct answer is till they answer a question. Now if you want them to answer and then evaluate the answer, then indexedDB is not a solution. It will make students write code/scripts to get the data from DB and cheat.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文