@nativescript-community/preferences
公共 API,允许用户使用原生的(熟悉的)应用设置界面,而不是需要自定义 UI
npm i --save @nativescript-community/preferences

Twitter Follow

@nativescript-community/preferences

此插件允许在 iOS 和 Android 上进行原生首选项的保存和加载

iOS 前提条件

Android 前提条件

安装

描述您的插件安装步骤。理想情况下应该是这样的

tns plugin add @nativescript-community/preferences

用法

    var prefs = new Preferences();

//Get existing value
prefs.getValue("name_preference");

//Set value
prefs.setValue("name_preference", "some new text");

API

属性 默认值 描述
openSettings(): any; 打开原生设置面板
getValue(key: string): any; 获取首选项的值
setValue(key: string, value: any): void; 将传递的值设置到首选项

许可证

Apache 许可证版本 2.0,2004 年 1 月