开发者

Should I use IndexedDB for web-app? [closed]

开发者 https://www.devze.com 2023-02-15 10:16 出处:网络
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing
Closed. This question is opinion-based. It is not currently accepting answers.

Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.

Closed 8 years ago.

Improve this question

I'm planning to build a web-app to do automated quizzing for some language classes I teach. The initial mock-ups have been built as a Drupal module, so it stores everything in a mySQL database accessed through php. I'm wondering, though, whether another data-storage tec开发者_StackOverflowhnology would make the app more portable in the long run. I'd like to be able to port versions that could be run offline and natively on mobile platforms. I've been toying with trying out the new IndexedDB technology that Firefox and Google seem to be buying into, but it's still so raw that I'm worried it will change too much. The regular offline storage option in HTML5 seems to lack any kind of relational capabilities, just storing a flat list of key-value pairs. Are there other options I'm missing for web/offline portability? Would people recommend IndexedDB at this point?

Thanks


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消