Ajaxリクエストを使用して、サーバーからすべてのJSONデータを取得します。しかし、私の側ではデータを変更したため、JavaScript、jQuery、PhoneGap、HTML5、および Ajax を使用して、変更したデータをサーバーに送信する必要があります。
これを行う例は何ですか?
Ajaxリクエストを使用して、サーバーからすべてのJSONデータを取得します。しかし、私の側ではデータを変更したため、JavaScript、jQuery、PhoneGap、HTML5、および Ajax を使用して、変更したデータをサーバーに送信する必要があります。
これを行う例は何ですか?
これを使って:
Ext.Ajax.request({
url : serverApiUrl,
method : "POST",
scriptTag : true,
headers : {'Content-Type': 'application/json'},
scope : this,
jsonData : yourModifiedJsondata,
success : successFN,
failure : failureFN
});
function onError(jqXHR, textStatus, errorThrown) {
// Or use alerts if you can't see your log
console.log("status: " + textStatus);
console.log("errorThrown: " + errorThrown);
// can't remember if this works:
console.log(jqXHR.statusText);
}
console.log('ajaxing!');
$.ajax({
type: 'post',
url: 'PRIVATE_URL',
data: {test:'asdf'},
dataType: 'json',
success: function(data){
console.log('done');
},
error: onError
});