asp.net - 返回新的RedirectResult()与返回Redirect()

标签 asp.net asp.net-mvc asp.net-mvc-3 redirect actionresult

以下两个 Controller ActionResult返回语句之间有什么区别:

return new RedirectResult("http://www.google.com", false);


return Redirect("http://www.google.com");

最佳答案

直接来自 source

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System.Diagnostics.CodeAnalysis;
using System.Web.Mvc.Properties;

namespace System.Web.Mvc
{
    // represents a result that performs a redirection given some URI
    public class RedirectResult : ActionResult
    {
        [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings", MessageId = "0#", Justification = "Response.Redirect() takes its URI as a string parameter.")]
        public RedirectResult(string url)
            : this(url, permanent: false)
        {
        }

        [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings", MessageId = "0#", Justification = "Response.Redirect() takes its URI as a string parameter.")]
        public RedirectResult(string url, bool permanent)
        {
            if (String.IsNullOrEmpty(url))
            {
                throw new ArgumentException(MvcResources.Common_NullOrEmpty, "url");
            }

            Permanent = permanent;
            Url = url;
        }

        public bool Permanent { get; private set; }

        [SuppressMessage("Microsoft.Design", "CA1056:UriPropertiesShouldNotBeStrings", Justification = "Response.Redirect() takes its URI as a string parameter.")]
        public string Url { get; private set; }

        public override void ExecuteResult(ControllerContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("context");
            }
            if (context.IsChildAction)
            {
                throw new InvalidOperationException(MvcResources.RedirectAction_CannotRedirectInChildAction);
            }

            string destinationUrl = UrlHelper.GenerateContentUrl(Url, context.HttpContext);
            context.Controller.TempData.Keep();

            if (Permanent)
            {
                context.HttpContext.Response.RedirectPermanent(destinationUrl, endResponse: false);
            }
            else
            {
                context.HttpContext.Response.Redirect(destinationUrl, endResponse: false);
            }
        }
    }
}

第二个参数确定是否为response is a 302 (temporary) or 301 permanent redirection。默认情况下,值为false

第二种方法是在Controller上,它只是一种便捷方法。这种方法已经存在于许多MVC版本中(至少可以追溯到至少2个),但是IIRC,我认为MVC 4中已经在RedirectResult中添加了Permanent部分(我不记得在MVC 3)。
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Security.Principal;
using System.Text;
using System.Web.Mvc.Async;
using System.Web.Mvc.Properties;
using System.Web.Profile;
using System.Web.Routing;
namespace System.Web.Mvc
{
    [SuppressMessage("Microsoft.Maintainability", "CA1506:AvoidExcessiveClassCoupling", Justification = "Class complexity dictated by public surface area")]
    public abstract class Controller : ControllerBase, IActionFilter, IAuthorizationFilter, IDisposable, IExceptionFilter, IResultFilter, IAsyncController, IAsyncManagerContainer
    {
      // omitted for brevity

      [SuppressMessage("Microsoft.Design", "CA1054:UriParametersShouldNotBeStrings", MessageId = "0#", Justification = "Response.Redirect() takes its URI as a string parameter.")]
      protected internal virtual RedirectResult Redirect(string url)
      {
          if (String.IsNullOrEmpty(url))
          {
              throw new ArgumentException(MvcResources.Common_NullOrEmpty, "url");
          }

          return new RedirectResult(url);
      }
    }
}

关于asp.net - 返回新的RedirectResult()与返回Redirect(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14875894/

相关文章:

javascript - 为 webgl 准备二进制数据并将其发送到 javascript

c# - MVC3 - 我如何覆盖 EditorFor IEnumerable 的模板/行为

c# - CaSTLeWindsor LifeStyle.PerWebRequest 表现得像单例

c# - 转储文件时 Iframe onLoad 不会触发?

asp.net - 我可以跳过 ASP.NET 菜单控件中的节点吗?

javascript - 使用 LinkBut​​ton 启动具有 ASP 值的客户电子邮件

asp.net-mvc - 将开放搜索功能添加到现有 ASP.NET MVC 网站的步骤是什么?

asp.net-mvc-3 - 如何使用 51 Degrees.mobi 检测触摸屏移动设备

asp.net-mvc-3 - DisplayAttribute.GroupName 属性的用途是什么?

asp.net - 重写规则错误 : HTTP Error 500. 50 - URL 重写模块错误。表达式 "https://abc.com/{R:1}"无法展开