Ionic 应用程序中 localStorage 的性能有何影响?

What is the impact on performance of localStorage in an Ionic app?

我正在使用 Ionic 框架开发移动应用程序,并使用 localStorage 进行缓存。我想知道使用 localStorage 是否会对我的应用程序的性能产生负面影响。

您可以使用缓存,如下面的代码所示:

.state('app.userlist', {
     cache : false,
     url: "/userlist",
             views: {
             'menuContent': {
             templateUrl: "templates/userlist.html",
             controller: 'UserListCtrl'
     }
 }
})

这取决于您的应用程序,您可以使用 localStorage,因为 localstorage 在应用程序开发中起着重要作用,但在某些情况下它会影响应用程序的性能,

你应该考虑

  • 你应该经常更换 localStorage 的值,因为一旦你设置了值,除非你改变,否则它不会改变,

  • 如果应用程序需要处理大数据,则必须选择Sqlite

  • 避免在 localStorage 中存储复杂数据,因为您不应该在 localStorage 的帮助下玩弄代码逻辑。