phonegapアプリでjqueryを使ってWebseviceにアクセスしたいです。しかし、応答が0になる
これは私のコードです
$(function () {
$("#callAjax").click(function () {
$.ajax({
type: "POST",
//url: "http://ws.geonames.org/postalCodeSearchJSON?postalcode=90210&maxRows=10",
url: " http://64.15.136.251:8080/onestatus/webservice/login?email=kk@kk.com&password=123456",
// data: ({ name: theName }),
data: ({}),
cache: false,
//dataType: "text",
dataType: "json",
success: onSuccess
});
});
$("#resultLog").ajaxError(function (event, request, settings, exception) {
$("#resultLog").html("Error Calling: " + settings.url + "<br />HTPP Code: " + request.status);
});
function onSuccess(data) {
var result = $.parseJSON(data);
var arrayObject = new Array();
for (i = 0; i < result.user.length; i++) {
$('#employeeList').append('<li>' + result.user[i].response + '</li>');
$('#employeeList').append('<li>' + result.user[i].user_id + '</li>');
$('#employeeList').append('<li>' + result.user[i].session_id + '</li>');
}
}
});
私のコードに何か問題があります