我有以下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请求,并且要发送的数据为以下字符串:
“ barapple”
我很难理解contentType和dataType有什么区别
我认为contentType指定了HTTP响应中可接受的数据类型,对吗?
和dataType?说啥?我在HTTP请求中发送的数据类型?
在这种情况下是“文本”,因为我要发送一个表示XML代码的文本字符串?
jQuery使用和REST API使用之间,内容类型和数据类型用途是否有所不同?
—
sofs1