Answers:
在您的操作方法中,返回Json(object)以将JSON返回到您的页面。
public ActionResult SomeActionMethod() {
return Json(new {foo="bar", baz="Blech"});
}
然后只需使用Ajax调用action方法即可。您可以使用ViewPage中的一种辅助方法,例如
<%= Ajax.ActionLink("SomeActionMethod", new AjaxOptions {OnSuccess="somemethod"}) %>
SomeMethod将是一个javascript方法,然后评估返回的Json对象。
如果要返回纯字符串,则可以使用ContentResult:
public ActionResult SomeActionMethod() {
return Content("hello world!");
}
默认情况下,ContentResult返回一个文本/纯文本作为其contentType。
这是可重载的,因此您还可以执行以下操作:
return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");
我认为您应该考虑请求的AcceptTypes。我在当前项目中使用它来返回正确的内容类型,如下所示。
您对控制器的操作可以像在请求对象上一样对其进行测试
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中,您可以通过将type参数作为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
希望这对詹姆斯有帮助
处理JSON数据的另一种不错的方法是使用JQuery getJSON函数。您可以致电
public ActionResult SomeActionMethod(int id)
{
return Json(new {foo="bar", baz="Blech"});
}
jQuery getJSON方法中的方法,只需...
$.getJSON("../SomeActionMethod", { id: someId },
function(data) {
alert(data.foo);
alert(data.baz);
}
);
return Json(new {foo="bar", baz="Blech"});
是!
我发现用JQuery实施MVC ajax GET调用有两个问题,这些使我头疼,因此请在此处共享解决方案。
JsonRequestBehavior.AllowGet
; 如果没有此MVC,则会返回HTTP 500错误(dataType: json
在客户端上指定)。cache: false
到$ .ajax调用中,否则最终将获得HTTP 304响应(而不是HTTP 200响应),并且服务器将不会处理您的请求。样本JQuery:
$.ajax({
type: 'get',
dataType: 'json',
cache: false,
url: '/MyController/MyMethod',
data: { keyid: 1, newval: 10 },
success: function (response, textStatus, jqXHR) {
alert(parseInt(response.oldval) + ' changed to ' + newval);
},
error: function(jqXHR, textStatus, errorThrown) {
alert('Error - ' + errorThrown);
}
});
示例MVC代码:
[HttpGet]
public ActionResult MyMethod(int keyid, int newval)
{
var oldval = 0;
using (var db = new MyContext())
{
var dbRecord = db.MyTable.Where(t => t.keyid == keyid).FirstOrDefault();
if (dbRecord != null)
{
oldval = dbRecord.TheValue;
dbRecord.TheValue = newval;
db.SaveChanges();
}
}
return Json(new { success = true, oldval = oldval},
JsonRequestBehavior.AllowGet);
}
要回答问题的另一半,您可以致电:
return PartialView("viewname");
当您想返回部分HTML时。您只需要找到某种方法即可确定请求是需要JSON还是HTML,也许可以基于URL部件/参数。
编码框架的替代解决方案
动作返回json
控制者
[HttpGet]
public ActionResult SomeActionMethod()
{
return IncJson(new SomeVm(){Id = 1,Name ="Inc"});
}
剃刀页面
@using (var template = Html.Incoding().ScriptTemplate<SomeVm>("tmplId"))
{
using (var each = template.ForEach())
{
<span> Id: @each.For(r=>r.Id) Name: @each.For(r=>r.Name)</span>
}
}
@(Html.When(JqueryBind.InitIncoding)
.Do()
.AjaxGet(Url.Action("SomeActionMethod","SomeContoller"))
.OnSuccess(dsl => dsl.Self().Core()
.Insert
.WithTemplate(Selector.Jquery.Id("tmplId"))
.Html())
.AsHtmlAttributes()
.ToDiv())
动作返回html
控制者
[HttpGet]
public ActionResult SomeActionMethod()
{
return IncView();
}
剃刀页面
@(Html.When(JqueryBind.InitIncoding)
.Do()
.AjaxGet(Url.Action("SomeActionMethod","SomeContoller"))
.OnSuccess(dsl => dsl.Self().Core().Insert.Html())
.AsHtmlAttributes()
.ToDiv())
您可能想看一下这篇非常有用的文章,它很好地涵盖了这一点!
只是认为这可能会帮助人们寻找这个问题的一个好的解决方案。
http://weblogs.asp.net/rashid/archive/2009/04/15/adaptive-rendering-in-asp-net-mvc.aspx
PartialViewResult和JSONReuslt从基类ActionResult继承。因此,如果动态确定返回类型,则将方法输出声明为ActionResult。
public ActionResult DynamicReturnType(string parameter)
{
if (parameter == "JSON")
return Json("<JSON>", JsonRequestBehavior.AllowGet);
else if (parameter == "PartialView")
return PartialView("<ViewName>");
else
return null;
}
public ActionResult GetExcelColumn()
{
List<string> lstAppendColumn = new List<string>();
lstAppendColumn.Add("First");
lstAppendColumn.Add("Second");
lstAppendColumn.Add("Third");
return Json(new { lstAppendColumn = lstAppendColumn, Status = "Success" }, JsonRequestBehavior.AllowGet);
}
}
可以根据要求灵活地产生不同的输出
public class AuctionsController : Controller
{
public ActionResult Auction(long id)
{
var db = new DataContext();
var auction = db.Auctions.Find(id);
// Respond to AJAX requests
if (Request.IsAjaxRequest())
return PartialView("Auction", auction);
// Respond to JSON requests
if (Request.IsJsonRequest())
return Json(auction);
// Default to a "normal" view with layout
return View("Auction", auction);
}
}
该Request.IsAjaxRequest()
方法非常简单:它仅检查传入请求的HTTP标头,以查看X-Requested-With标头的值是否为XMLHttpRequest
,大多数浏览器和AJAX框架都会自动附加该标头。
用于检查请求是否针对json的自定义扩展方法,以便我们可以从任何地方调用它,就像Request.IsAjaxRequest()扩展方法一样:
using System;
using System.Web;
public static class JsonRequestExtensions
{
public static bool IsJsonRequest(this HttpRequestBase request)
{
return string.Equals(request["format"], "json");
}
}
来源:https : //www.safaribooksonline.com/library/view/programming-aspnet-mvc/9781449321932/ch06.html#_javascript_rendering