我想使用 ajax jquery 访问 php web 服务这是我的代码:-
$.ajax({
type: "POST",
url:'http://localhost:8080/onestatus/webservice/login?email=kk@kk.com&password=123456',
cache: false,
dataType: "json",
success: onSuccess
});
function onSuccess(data) {
// var data = data.d;
var result = $.parseJSON(data);
var arrayObject = new Array();
for (var i = 0; i < result.user.length; i++) {
// $('#resultLog').append('<li>' + result.user[i].user_id + '</li>');
}
}
当我使用 dataType: "json" 然后我得到 request.status=0 注意到得到响应
当使用 dataType: "jsonp" 在 firbug 中出现错误
SyntaxError: invalid label [Break On This Error]
{"user":[{"response":"success","user_id":"28","session_id":123456}]}