HTML5 localStorage for assets (stylesheets, JavaScript, images etc)

后端 未结 2 1405
长发绾君心
长发绾君心 2021-02-05 21:10

To save both client download time and network usage, is it possible to use the localStorage feature of HTML5 to store contents of linked stylesheets, javascript files and binary

2条回答
  •  闹比i
    闹比i (楼主)
    2021-02-05 21:32

    I think in this case you should consider offline caching:

    • https://developer.mozilla.org/en/Offline_resources_in_Firefox#Specifying_a_cache_manifest

    You can also store user input data in localStorage or sessionStorage:

    • https://developer.mozilla.org/en/DOM/Storage#sessionStorage
    • https://developer.mozilla.org/en/DOM/Storage#localStorage

    Don't use globalStorage (not a standard).

    I've written an article about offline, see: http://hacks.mozilla.org/2010/01/offline-web-applications/

    It's about offline, but such mechanism can be used to boost your web app.

提交回复
热议问题