Best way to store small UI user preferences in web app?

后端 未结 4 838
执念已碎
执念已碎 2020-12-02 18:42

I have a web app I\'m developing and quite like the idea that if the user makes changes to the view of the UI (eg. Lists open or closed, certain viewing preferences) those c

4条回答
  •  广开言路
    2020-12-02 19:05

    If it's so small you should probably store the UI settings json object in your own database.

    That will leave users with less problems at their end, like cache clearance and local storage unsupported browsers.

    It will also make it possible for users to use the UI settings across different computers or browsers.

提交回复
热议问题