Is localstorage the right choice for this webapp?

后端 未结 2 1511
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-22 06:45

I\'m interested in building a small offline webapp and I\'m looking for some advice. Here\'s the basics of what I want it to do

  • Create reports that, initially,
2条回答
  •  天命终不由人
    2020-12-22 07:11

    localstorage will work just fine for this, but don't think of it as a robust solution.. It's just a basic key/value store and won't be very performant with thousands of complex things going on.

    Check out the excellent Dive into HTML5 guide on localstorage: http://diveintohtml5.info/storage.html

提交回复
热议问题