gpt4 book ai didi

c# - 如何从 ASP.NET Web API ValueProvider 中的 HTTP POST 请求检索正文值?

转载 作者:可可西里 更新时间:2023-11-01 08:20:00 25 4
gpt4 key购买 nike

我想发送一个 HTTP POST 请求,其正文包含构成一篇简单博客文章的信息,没什么特别的。

我读过 here当您想在 Web API 中绑定(bind)复杂类型(即不是 stringint 等的类型)时,一个好的方法是创建自定义模型绑定(bind)器。

我有一个自定义模型绑定(bind)器 (BlogPostModelBinder),它又使用自定义值提供程序 (BlogPostValueProvider)。我不明白的是,我应该如何以及在何处能够从 BlogPostValueProvider 中的请求正文中检索数据?

在模型 Binder 中,这是我认为的正确方法,例如检索标题。

public bool BindModel(HttpActionContext actionContext, ModelBindingContext bindingContext)
{
...
var title= bindingContext.ValueProvider.GetValue("Title");
...
}

而 BlogPostValueProvider 看起来像这样:

 public class BlogPostValueProvider : IValueProvider
{
public BlogPostValueProvider(HttpActionContext actionContext)
{
// I can find request header information in the actionContext, but not the body.
}

public ValueProviderResult GetValue(string key)
{
// In some way return the value from the body with the given key.
}
}

这可能可以通过更简单的方式解决,但由于我正在探索 Web API,所以最好让它工作。

我的问题很简单,就是找不到请求正文的存储位置。

感谢您的指导!

最佳答案

这是一个 blog post关于这个来自 Rick Strahl。他的帖子几乎回答了你的问题。要使他的代码适应您的需要,您需要执行以下操作。

在您的值提供者的构造函数中,像这样读取请求正文。

Task<string> content = actionContext.Request.Content.ReadAsStringAsync();
string body = content.Result;

关于c# - 如何从 ASP.NET Web API ValueProvider 中的 HTTP POST 请求检索正文值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22884579/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com