が、私は自分のアプリケーションでこのような単純なのActionResultメソッドを使用します。
は、この擬似コードを考えてみましょう
public static string RenderViewToString(ControllerContext context, string viewName, object model)
{
if (string.IsNullOrEmpty(viewName))
viewName = context.RouteData.GetRequiredString("action");
var viewData = new ViewDataDictionary(model);
using (var sw = new StringWriter())
{
var viewResult = ViewEngines.Engines.FindPartialView(context, viewName);
var viewContext = new ViewContext(context, viewResult.View, viewData, new TempDataDictionary(), sw);
viewResult.View.Render(viewContext, sw);
return sw.GetStringBuilder().ToString();
}
}
public static string RenderViewToString(ControllerContext context, string viewName)
{
if (string.IsNullOrEmpty(viewName))
viewName = context.RouteData.GetRequiredString("action");
var viewData = new ViewDataDictionary();
using (var sw = new StringWriter())
{
var viewResult = ViewEngines.Engines.FindPartialView(context, viewName);
var viewContext = new ViewContext(context, viewResult.View, viewData, new TempDataDictionary(), sw);
viewResult.View.Render(viewContext, sw);
return sw.GetStringBuilder().ToString();
}
}
しかし、これは戻り値を変更するように見えます。私はアクションフィルタとしてこれを行う方法を探していますので、Ajaxリクエストではないときに 'View'を返すことができます。これは役に立ちます! – Victor
偶然、あなたのAjaxリクエストにJqueryを使用していますか? – Mark
私はjQueryを使用していて、 'isAjaxRequest' – Victor