解决:无法在发送 HTTP 标头之后进行重定向。 跟…

2018-06-22 06:10:50来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

问题:在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;
        }
        ………略………
    }
    ………略………
}

 

 
 
 
 
 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:[.NET] 一步步打造一个简单的 MVC 电商网站 - BooksStore(二)

下一篇:浅谈MVC页面之间参数传递