这是我目前拥有的代码,它的工作原理是找到 data.success 并在返回正确的值时启动下一页,我遇到的问题是解析一些额外的数据并传递到本地存储,所以我在下一页使用它,例如用户 ID、用户名等
$.post(postTo,{email:value1 , password:value2, tag:tagvar} ,
function(data) {
//$('#output').html('inside');
if(data.success == '1') {
$.mobile.changePage( "home.html", { transition: "flip"} );
} else {
$('#output').html('Could not connect please try again');
}
},'json');
return false;
});
});
这是从请求返回的 JSON...
{"tag":"login","success":1,"error":0,"uid":"4fc3562b9a8369.38575999","user":{"name":"test","email":"test@test.ie","created_at":"2012-05-28 11:40:43","updated_at":null,"ac":"8","user_type":"1"}}
我真的不确定如何正确解析以及如何使用本地存储。
非常感谢