5

我已经实现了一个自定义媒体格式化程序,当客户端特别请求“csv”格式时它工作得很好。

我已经使用以下代码测试了我的 api 控制器:

        HttpClient client = new HttpClient();
        // Add the Accept header
        client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("text/csv"));

但是,当我从 Web 浏览器打开相同的 URL 时,它返回 JSON 而不是 CSV。这可能是由于标准 ASP.NET WebAPI 配置将 JSON 设置为默认媒体格式化程序,除非调用者另有指定。我希望在我拥有的所有其他 Web 服务上都有这种默认行为,但在返回 CSV 的单个操作上却没有。我希望默认媒体处理程序是我实现的 CSV 处理程序。如何配置控制器的端点,使其默认返回 CSV,并且仅在客户端请求时返回 JSON/XML?

4

1 回答 1

0

您使用的是哪个版本的 Web API?

如果您使用的是5.0版本,则可以使用基于新IHttpActionResult的逻辑,如下所示:

public IHttpActionResult Get()
{
    MyData someData = new MyData();

    // creating a new list here as I would like CSVFormatter to come first. This way the DefaultContentNegotiator
    // will behave as before where it can consider CSVFormatter to be the default one.
    List<MediaTypeFormatter> respFormatters = new List<MediaTypeFormatter>();
    respFormatters.Add(new MyCsvFormatter());
    respFormatters.AddRange(Configuration.Formatters);

    return new NegotiatedContentResult<MyData>(HttpStatusCode.OK, someData,
                    Configuration.Services.GetContentNegotiator(), Request, respFormatters);
}

如果您使用4.0的是 Web API 版本,那么您可以执行以下操作:

public HttpResponseMessage Get()
{
    MyData someData = new MyData();

    HttpResponseMessage response = new HttpResponseMessage();

    List<MediaTypeFormatter> respFormatters = new List<MediaTypeFormatter>();
    respFormatters.Add(new MyCsvFormatter());
    respFormatters.AddRange(Configuration.Formatters);

    IContentNegotiator negotiator = Configuration.Services.GetContentNegotiator();
    ContentNegotiationResult negotiationResult = negotiator.Negotiate(typeof(MyData), Request, respFormatters);

    if (negotiationResult.Formatter == null)
    {
        response.StatusCode = HttpStatusCode.NotAcceptable;
        return response;
    }

    response.Content = new ObjectContent<MyData>(someData, negotiationResult.Formatter, negotiationResult.MediaType);

    return response;
}
于 2013-10-30T18:44:26.337 回答