我正在发出 AJAX 请求。返回response
的是一个 XML。
如何让用户在response
本地保存为 XML 文件success
?
$.ajax({
type: "POST",
url: url,
data: JSON.stringify(myJson),
contentType: "application/json",
dataType: format,
success: function(response)
{
console.log("Exported JSON: " + JSON.stringify(myJson));
console.log(response);
jQuery.parseXML(response);
},
error: function()
{
console.log(arguments);
alert("Export process failed.");
}
});
在format
这种情况下是xml
。