contentType
è il tipo di dati che stai inviando, quindi application/json; charset=utf-8
è comune, così come è application/x-www-form-urlencoded; charset=UTF-8
, che è l'impostazione predefinita.
dataType
è quello che vi aspettate dal server: json
, html
, text
, ecc jQuery userà questo per capire come popolare parametro della funzione successo.
Se pubblichi qualcosa come:
{"name":"John Doe"}
e in attesa di nuovo:
{"success":true}
Quindi dovresti avere:
var data = {"name":"John Doe"}
$.ajax({
dataType : "json",
contentType: "application/json; charset=utf-8",
data : JSON.stringify(data),
success : function(result) {
alert(result.success); // result is an object which is created from the returned JSON
},
});
Se ti aspetti quanto segue:
<div>SUCCESS!!!</div>
Quindi dovresti fare:
var data = {"name":"John Doe"}
$.ajax({
dataType : "html",
contentType: "application/json; charset=utf-8",
data : JSON.stringify(data),
success : function(result) {
jQuery("#someContainer").html(result); // result is the HTML text
},
});
Ancora uno - se vuoi pubblicare:
name=John&age=34
Quindi non stringify
i dati e fai:
var data = {"name":"John", "age": 34}
$.ajax({
dataType : "html",
contentType: "application/x-www-form-urlencoded; charset=UTF-8", // this is the default value, so it's optional
data : data,
success : function(result) {
jQuery("#someContainer").html(result); // result is the HTML text
},
});