至尊宝的传说
我认为你应该考虑请求的类型。我在当前项目中使用它来返回正确的内容类型,如下所示。您在控制器上的操作可以测试它,就像在请求对象上一样。if (Request.AcceptTypes.Contains("text/html")) {
return View();}else if (Request.AcceptTypes.Contains("application/json")){
return Json( new { id=1, value="new" } );}else if (Request.AcceptTypes.Contains("application/xml") ||
Request.AcceptTypes.Contains("text/xml")){
//}然后,您可以实现视图的ASPX,以满足部分xhtml响应的情况。然后,在jQuery中,您可以获取它,将类型参数作为json传递:$.get(url, null, function(data, textStatus) {
console.log('got %o with status %s', data, textStatus);
}, "json"); // or xml, html, script, json, jsonp or text