如何使用IHttpActionResult对Created-201响应进行编码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用IHttpActionResult对Created-201响应进行编码相关的知识,希望对你有一定的参考价值。

如何使用IHttpActionResult对Created-201响应进行编码?

IHttpActionResult只有这些选择

  • 项目清单
  • 未找到
  • 例外
  • 擅自
  • 错误请求
  • 冲突重定向
  • InvalidModelState

我现在正在做的是下面的代码,但我想使用IHttpActionResult而不是HttpResponseMessage

 public IHttpActionResult Post(TaskBase model)
        {
           HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.Created, model);
          response.Headers.Add("Id", model.Id.ToString());
          return ResponseMessage(response);
         }
答案

如果您的视图派生自ApiController,您应该能够从基类调用Created方法来创建这样的响应。

样品:

[Route("")]
public async Task<IHttpActionResult> PostView(Guid taskId, [FromBody]View view)
{
    // ... Code here to save the view

    return Created(new Uri(Url.Link(ViewRouteName, new { taskId = taskId, id = view.Id })), view);
}
另一答案
return Content(HttpStatusCode.Created, "Message");

内容返回NegotiatedContentResult。 NegotiatedContentResult实现了IHttpActionResult。

enter image description here

enter image description here

类似的问题:如果你想发送带有消息的NotFound。

return Content(HttpStatusCode.NotFound, "Message");

要么:

return Content(HttpStatusCode.Created, Class object);
return Content(HttpStatusCode.NotFound, Class object);
另一答案

我知道这是一个老线程,但你可能想看看我的解决方案here。它比需要的多一点,但肯定会完成这项工作。

脚步:

定义自定义属性:

[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
public sealed class UniqueIdAttribute: Attribute
    {
    }

使用自定义属性装饰模型的唯一标识属性:

   public class Model
    {
        public List<Model> ChildModels { get; set; }
        [UniqueId]
        public Guid ModelId { set; get; }
        public Guid ? ParentId { set; get; }
        public List<SomeOtherObject> OtherObjects { set; get; }
    }

将新的Created(T yourobject);方法添加到继承自ApiController的BaseController。从这个BaseController继承所有控制器:

CreatedNegotiatedContentResult<T> Created<T>(T content)
    {
        var props =typeof(T).GetProperties()
        .Where(prop => Attribute.IsDefined(prop, typeof(UniqueIdAttribute)));
        if (props.Count() == 0)
        {
            //log this, the UniqueId attribute is not defined for this model
            return base.Created(Request.RequestUri.ToString(), content);
        }
        var id = props.FirstOrDefault().GetValue(content).ToString();
        return base.Created(new Uri(Request.RequestUri + id), content);
     }

它非常简单,无需担心在每种方法中都写得那么多。你所要做的只是打电话给Created(yourobject);

如果您忘记装饰或无法装饰模型(由于某种原因),Created()方法仍然有效。虽然位置标题会遗漏Id。

您对该控制器的单元测试应该注意这一点。

以上是关于如何使用IHttpActionResult对Created-201响应进行编码的主要内容,如果未能解决你的问题,请参考以下文章

IHttpActionResult - 如何使用?

使用具有匿名类型的 OkNegotiatedContentResult 对 IHttpActionResult 进行单元测试

使用 c# 使用 IHttpActionResult 将请求类型作为 XML 发送

[使用C#使用IHttpActionResult将请求类型发送为XML

将HttpResponseBase转换为IHttpActionResult

创建新的 IHttpActionResult 操作结果方法