zoukankan      html  css  js  c++  java
  • 解决:无法在发送 HTTP 标头之后进行重定向。 跟踪信息: 在 System.Web.HttpResponse.Redirect(String url, Boolean endResponse, Boolean permanent) 在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>……

    问题:在MVC的过滤器中验证用户状态时报如下错误:
     
    无法在发送 HTTP 标头之后进行重定向。 跟踪信息:   在 System.Web.HttpResponse.Redirect(String url, Boolean endResponse, Boolean permanent)
       在 System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult)
     
    解决:
    在验证用户身份的时候首先要到第三方获取用户的openid,这时需要跳转到第三方页面,然后回到到当前页面链接,如果没有绑定则再次跳转到登录页面。过滤器代码如下:
     
    public class Logged : ActionFilterAttribute, IAuthorizationFilter
    {
        ………略………
        public void OnAuthorization(AuthorizationContext filterContext)
        {
            string openid = XXXXXX.GetOpenId();//在获取openid时XXXXXX.GetOpenId()已经跳转,代码略
            
            if (string.IsNullOrEmpty(openid))
            {
                filterContext.Result = new RedirectResult("https://www.****.com/login");//在获取openid时页面已经跳转,这里就不要再次跳转了,否则报错:无法在发送 HTTP 标头之后进行重定向。
                return;
            }
            ………略………
        }
        ………略………
    }

     修改后的代码:

    public class Logged : ActionFilterAttribute, IAuthorizationFilter
    {
        ………略………
        public void OnAuthorization(AuthorizationContext filterContext)
        {
            string openid = XXXXXX.GetOpenId();//在获取openid时XXXXXX.GetOpenId()已经跳转
            
            if (string.IsNullOrEmpty(openid))
            {
                filterContext.Result = new ContentResult();//终止Action继续向下执行
                return;
            }
            ………略………
        }
        ………略………
    }
     
     
     
     
     
  • 相关阅读:
    逆光拍摄常见的问题(解决大光比问题)
    HDP和包围曝光
    直方图
    linux查找文件的命令【转】
    100篇大数据文章[转]
    squid
    修改/etc/resolv.conf又恢复到原来的状态?[转]
    python字符串及正则表达式[转]
    GraphLab介绍[转]
    Scala 中的 apply 和 update 方法[转]
  • 原文地址:https://www.cnblogs.com/jesselzj/p/6689028.html
Copyright © 2011-2022 走看看