“应用程序设置”的电话间隙实现;
我想存储一些设置,例如我的应用程序的用户名和密码, 这样在应用程序启动时我就能够进行用户身份验证。
谁能指导我如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用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
您可以在 Cordova 5.x 上使用此插件
https://github.com/apla/me.apla.cordova.app-preferences
你添加它
然后使用它。
You can use this plugin for Cordova 5.x
https://github.com/apla/me.apla.cordova.app-preferences
you add it
and then use it.
请注意,从 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