我正在使用jquery mobile和phoneGap开发我的第一个移动应用程序,以便在不同的移动操作系统上构建我的应用程序,并且我阻止了用户在输入其信息后如何保持用户登录第一次验证
你能否与我分享你的建议我读了一些关于如何通过使用cookies为浏览器登录的主题,现在我需要一个移动应用程序的解决方案
提前感谢你的朋友
答案 0 :(得分:0)
localStorage 允许永久存储,
window.localStorage.key = value;
To get the value, Use this;
var value = window.localStorage.key;
sessionStorage 允许在会话中存储。
window.sessionStorage.key=value;
To get the value, Use this;
var value = window.sessionStorge.key;
请参阅Link
或使用本地数据库在客户端存储数据。
var dbShell = window.openDatabase(name, version, display_name, size);
设备就绪功能中的创建数据库
var db = window.openDatabase("test", "1.0", "Test DB", 1000000);
function populateDB(tx) {
tx.executeSql('DROP TABLE IF EXISTS DEMO');
tx.executeSql('CREATE TABLE IF NOT EXISTS DEMO (id unique, data)');
tx.executeSql('INSERT INTO DEMO (id, data) VALUES (1, "First row")');
tx.executeSql('INSERT INTO DEMO (id, data) VALUES (2, "Second row")');
}
function errorCB(err) {
alert("Error processing SQL: "+err.code);
}
function successCB() {
alert("success!");
}
db.transaction(populateDB, errorCB, successCB);
PhoneGap Documentation
请参阅这些链接了解更多信息