jQuery ajax 函数中 contentType 和 dataType 的区别
2022-08-30 04:25:58
我有以下Jquery回调函数,我对它有一点疑问(我不太了解Jquery):
$("form.readXmlForm").submit(function() {
// Riferimento all'elemento form che ha scatenato il submit
var form = $(this);
// Variabile che contiene il riferimento al bottone clickato
var button = form.children(":first");
$.ajax({ // Viene eseguita la chiamata AJAX
type: "POST", // Tipo di richiesta: POST
// URL verso quale viene inviata la richiesta
url: form.attr("action"),
// Dati XML inviati:
data: "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><javaBean><foo>bar</foo><fruit>apple</fruit></javaBean>",
// Tipo di media type accettabile dalla response:
contentType: "application/xml",
dataType: "text",
success: function(text) {
MvcUtil.showSuccessResponse(text, button);
},
error: function(xhr) {
MvcUtil.showErrorResponse(xhr.responseText, button);
}
});
如您所见,此函数只需向后端执行 AJAX 请求,即可设置此请求的参数。
我已经设置了我正在向URL发送请求,该请求是POST请求,并且我发送的数据是以下字符串:
“棒苹果”
我有一些困难来理解内容类型和数据类型之间的区别是什么
我认为 contentType 指定了在 HTTP 响应中可接受的数据类型,对吗?
数据类型呢?怎么说?我在 HTTP 请求中发送的数据类型?
在这种情况下是“文本”,因为我正在发送一个文本字符串,该字符串表示XML代码?