EventSource的响应的MIME类型(“text / html”)不是“text / event-stream”

时间:2012-10-31 19:39:20

标签: c# javascript asp.net-mvc mime-types

当我尝试将EventSource连接到我的控制器时,它会一直说:

  

EventSource的响应具有MIME类型(“text / html”),而不是   “文/事件流”。中止连接。

我做了以下课程来帮助处理和准备响应。在这个课程中,我相信我将responseType设置为text/event-stream

public class ServerSentEventResult : ActionResult
{
    public delegate string GetContent();
    public GetContent Content { get; set; }
    public int Version { get; set; }

    public override void ExecuteResult(ControllerContext context)
    {
        if (context == null)
        {
            throw new ArgumentNullException("context");
        }

        if (this.Content != null)
        {
            HttpResponseBase response = context.HttpContext.Response;
            response.ContentType = "text/event-stream"; response.BufferOutput = false; response.Charset = null;
            string[] newStrings = context.HttpContext.Request.Headers.GetValues("Last-Event-ID");
            if (newStrings == null || newStrings[0] != this.Version.ToString())
            {
                try
                {
                    response.Write("retry:250\n");
                    response.Write(string.Format("id:{0}\n", this.Version));
                    response.Write(string.Format("data:{0}\n\n", this.Content()));
                    response.End();
                }
                catch (HttpException e) { }
            }
            else
            {
                response.Write(String.Empty);
            }
        }
    }
}

有人可以帮我解决这个问题吗?千万次提前感谢!

1 个答案:

答案 0 :(得分:0)

对不起,迟到了。

我在代码中所做的是在字符串构建器中准备我的整个响应然后写入并立即刷新它(不是3次写入结束)

var sb = new StringBuilder(); 
sb.Append("retry: 1\n");
sb.AppendFormat("id: {0}\n", this.Version);
sb.AppendFormat("id: {0}\n\n", this.Content());
Response.ContentType = "text/event-stream";
Response.Write(sb.ToString());
Response.Flush();

另一方面,我的代码在MVC控制器中,所以我不自己创建响应(我使用this.Response)意味着我的标题可能包含的数据不仅仅是ContentType。