“应用程序设置”的电话间隙实现;

发布于 2024-12-10 20:37:35 字数 109 浏览 0 评论 0原文

我想存储一些设置,例如我的应用程序的用户名和密码, 这样在应用程序启动时我就能够进行用户身份验证。

谁能指导我如何使用 phoneGap 实现这一目标。

I wanted to store some settings like username and password for my application,
such that at the start of the application I would be able to do user authentication.

Can anyone guide me how to achieve this using phoneGap.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

心不设防 2024-12-17 20:37:36

使用phonegap本地存储机制来完成您的任务

http://docs. phonegap.com/en/1.1.0/phonegap_storage_storage.md.html#Storage

Use phonegap local storage mechanism to achieve your tasks

http://docs.phonegap.com/en/1.1.0/phonegap_storage_storage.md.html#Storage

疑心病 2024-12-17 20:37:36

您可以在 Cordova 5.x 上使用此插件
https://github.com/apla/me.apla.cordova.app-preferences

你添加它

cordova plugin add cordova-plugin-app-preferences

然后使用它。

// cordova interface
var prefs = plugins.appPreferences;

function ok (value) {}
function fail (error) {}

// store key => value pair
prefs.store (ok, fail, 'key', 'value');

// store key => value pair in dict (see notes)
prefs.store (ok, fail, 'dict', 'key', 'value');

You can use this plugin for Cordova 5.x
https://github.com/apla/me.apla.cordova.app-preferences

you add it

cordova plugin add cordova-plugin-app-preferences

and then use it.

// cordova interface
var prefs = plugins.appPreferences;

function ok (value) {}
function fail (error) {}

// store key => value pair
prefs.store (ok, fail, 'key', 'value');

// store key => value pair in dict (see notes)
prefs.store (ok, fail, 'dict', 'key', 'value');
↙温凉少女 2024-12-17 20:37:36

请注意,从 IOS 5.1 (Apple) 开始,本地存储是临时的。如果你想编写跨平台应用程序,最好使用phonegap的FILE-api。

http://docs.phonegap.com/en/3.2.0 /cordova_file_file.md.html#文件

Be aware that from IOS 5.1 (Apple) the local storage is temporary. If you want to write crossplatform applications it is better to use phonegap's FILE-api.

http://docs.phonegap.com/en/3.2.0/cordova_file_file.md.html#File

谜泪 2024-12-17 20:37:35
localStorage.setItem("pref1", "val1");

var pref1 = localStorage.getItem("pref1");
localStorage.setItem("pref1", "val1");

var pref1 = localStorage.getItem("pref1");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文