asp.net-mvc – 如何从ASP.NET MVC中的JSONResult方法重定向到控制器操作?

我正在基于他的UserId作为JsonResult获取用户的记录…
public JsonResult GetClients(int currentPage,int pageSize)
{
   if (Session["UserId"] != "")
   {
      var clients = clirep.FindAllClients().AsQueryable();
      var count = clients.Count();
      var results = new PagedList<ClientBO>(clients,currentPage - 1,pageSize);
      var genericResult = new { Count = count,Results = results };
      return Json(genericResult);
   }
   else
   {
         //return RedirectToAction("Index","Home");
   }
}

如何重定向一个控制器动作从jsonResult方法在asp.net mvc?任何建议…

编辑:
这似乎不起作用

if (Session["UserId"] != "")
            {
                var clients = clirep.FindAllClients().AsQueryable();
                var count = clients.Count();
                var results = new PagedList<ClientBO>(clients,pageSize);
                var genericResult = new { Count = count,Results = results,isRedirect=false};
                return Json(genericResult);
            }
            else
            {
                return Json({redirectUrl = Url.Action("Index","Home"),isRedirect = true });
            }

解决方法

这将取决于您如何调用此控制器操作。当你使用JSON时,假设你在AJAX中调用它。如果是这种情况,则无法从控制器操作重定向。您将需要在AJAX脚本的成功回调中执行此操作。实现它的一个方法如下:
return Json(new 
{ 
    redirectUrl = Url.Action("Index",isRedirect = true 
});

而在成功回调中:

success: function(json) {
    if (json.isRedirect) {
        window.location.href = json.redirectUrl;
    }
}

备注:确保在JSON中包含isRedirect = false,以防您不想重定向,这是控制器操作中的第一种情况。

相关文章

这篇文章主要讲解了“WPF如何实现带筛选功能的DataGrid”,文...
本篇内容介绍了“基于WPF如何实现3D画廊动画效果”的有关知识...
Some samples are below for ASP.Net web form controls:(fr...
问题描述: 对于未定义为 System.String 的列,唯一有效的值...
最近用到了CalendarExtender,结果不知道为什么发生了错位,...
ASP.NET 2.0 page lifecyle ASP.NET 2.0 event sequence cha...