Is localstorage the right choice for this webapp?

后端 未结 2 1509
佛祖请我去吃肉
佛祖请我去吃肉 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

    0 讨论(0)
  • 2020-12-22 07:16

    Link to the localstorage apis

    Yes localstorage would be perfect for you application. It would allow your application to have no need to connect to a server at all. Keep in mind that local storage does have maximums on the amount of data that can be stored.

    EDIT: Using JSON.stringify() on can convert complex javascript objects to json which can be storage and retrieved with ease inside of local storage.

    0 讨论(0)
提交回复
热议问题