我知道JSON和纯文本,但我不知道XML的确切typeof
,因为我无法找到测试链接。我认为它是object
,因为HTML DOM访问使用它,但我只需要确保。
答案 0 :(得分:0)
如果没有代码片段,您可能会返回“XMLDocument”类型(取决于脚本引擎)。
我尝试使用Chrome验证/验证:
$.ajax({ url: 'http://localhost/Test/Test' })
.done(function(f) {
console.log(f instanceof XMLDocument ? "XMLDocument" : "object");
});
我的简单测试/测试返回了一个MIME类型为text / xml的XML字符串:
public ActionResult Test()
{
return Content("<test><answer accurate=\"true\">42</answer></test>", "text/xml");
}