我是Angularjs-2.3 TypeScript的新手。我有一个场景,我需要在应用程序中保存userId,这样可以访问应用程序中的任何位置。
如果我使用的是Android或iOS,我会使用那些NSUserDefaults和SharedPreferences。我如何在TypeScript中为Android和iOS的原生应用程序做同样的事情。谢谢。
答案 0 :(得分:1)
我找到了办法。使用应用程序设置非常简单。
链路> https://docs.nativescript.org/cookbook/application-settings
这是步骤:
导入文件中的应用程序设置需要保存或读取
import { getString, setString } from "application-settings";
设置值
setString(yourKey,appropriateValue);
读取值
getString(yourKey);