有没有办法从MVC返回一个HTML字符串作为JSON响应的一部分呈现部分?
public ActionResult ReturnSpecialJsonIfInvalid(AwesomenessModel model)
{
if (ModelState.IsValid)
{
if(Request.IsAjaxRequest()
return PartialView("NotEvil", model);
return View(model)
}
if(Request.IsAjaxRequest())
{
return Json(new { error=true, message = PartialView("Evil",model)});
}
return View(model);
}
答案 0 :(得分:106)
您可以从PartialViewResult对象中提取html字符串,类似于此线程的答案:
PartialViewResult和ViewResult都派生自ViewResultBase,因此同样的方法应该同时适用于两者。
使用上面线程中的代码,您可以使用:
public ActionResult ReturnSpecialJsonIfInvalid(AwesomenessModel model)
{
if (ModelState.IsValid)
{
if(Request.IsAjaxRequest())
return PartialView("NotEvil", model);
return View(model)
}
if(Request.IsAjaxRequest())
{
return Json(new { error = true, message = RenderViewToString(PartialView("Evil", model))});
}
return View(model);
}
答案 1 :(得分:30)
而不是RenderViewToString
我喜欢像
return Json(new { Url = Url.Action("Evil", model) });
然后你可以在你的javascript中捕获结果并执行类似
的操作success: function(data) {
$.post(data.Url, function(partial) {
$('#IdOfDivToUpdate').html(partial);
});
}
答案 2 :(得分:0)
Url.Action(“邪恶”,模型)
将生成一个get查询字符串,但是您的ajax方法是post,它将抛出错误状态500(内部服务器错误)。 – 2月14日9:51在Fereydoon Barikzehy
只需在您的Json对象上添加“ JsonRequestBehavior.AllowGet”。