I am trying to send a json data from a javascript function running on a mobile data(phonegap framework) to a remote server. The code looks like below
function sendJSONtoServer() {
//alert("the call start was success to sendJSONtoServer");
$.ajax({
url: 'http://myserver.edu/~sas0090/save-userinfo.php',
data: {'message' : "Hey Hi"},
type: 'GET',
dataType:'json',
crossDomain: true,
contentType: "application/json; charset=utf-8",
success: function(data) {
//it works, do something with the data
alert('Your comment was successfully added');
},
error: function() {
//something went wrong, handle the error and display a message
alert('There was an error adding your comment');
}
});
alert("the call end was success to sendJSONtoServer");
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…