contentType
é o tipo de dados que você está enviando, então application/json; charset=utf-8
é comum, como é application/x-www-form-urlencoded; charset=UTF-8
, o padrão.
dataType
é o que você está esperando de volta do servidor: json
, html
, text
, etc. jQuery vai usar isso para descobrir como preencher parâmetros da função sucesso.
Se você estiver postando algo como:
{"name":"John Doe"}
e esperando de volta:
{"success":true}
Então você deve ter:
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 você está esperando o seguinte:
<div>SUCCESS!!!</div>
Então você deve fazer:
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
},
});
Mais um - se você quiser postar:
name=John&age=34
Então não faça stringify
os dados e faça:
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
},
});