1
我目前正在嘗試完成移動應用程序登錄,我正在運行解析我的ajax的成功函數的問題。任何幫助表示讚賞。移動應用程序解析登錄結果
$(document).ready(function() {
//event handler for submit button
$("#btnSubmit").click(function() {
//collect userName and password entered by users
var username = $("#username").val();
var password = $("#password").val();
//call the authenticate function
authenticate(username, password);
});
});
//authenticate function to make ajax call
function authenticate(username, password) {
$.ajax
({
type: "POST",
//the url where you want to sent the userName and password to
url: "http://my-domain.com/php/jsonserver.php?func=Login",
dataType: 'json',
async: false,
//json object to sent to the authentication url
data: '{"username"="' + username + '", "password"="' + password + '"}',
success: function() {
//do any process for successful authentication here
}
})
}
是什麼問題? – Prisoner
我知道我需要解析成功函數的結果,但不知道從哪裏開始。在進入下一頁之前,還需要將會話ID存儲在cookie中。 –