gpt4 book ai didi

asp.net - 如何使用 WebApi 将 POST 映射到自定义操作?

转载 作者:行者123 更新时间:2023-12-02 21:21:17 25 4
gpt4 key购买 nike

我正在尝试找出 Web API 路由背后的疯狂之处。

当我尝试发布这样的数据时:

curl -v -d "test" http://localhost:8088/services/SendData

我收到 404 和以下错误消息:

{"Message":"No HTTP resource was found that matches the request URI 'http://localhost:8088/services/SendData'.","MessageDetail":"No action was found on the controller 'Test' that matches the request."}

这是我的测试服务器的代码。

public class TestController : ApiController
{

[HttpPost]
public void SendData(string data)
{
Console.WriteLine(data);
}
}

class Program
{
static void Main(string[] args)
{

var config = new HttpSelfHostConfiguration("http://localhost:8088");

config.Routes.MapHttpRoute(
name: "API Default",
routeTemplate:"services/SendData",
defaults: new { controller = "Test", action = "SendData"},
constraints: null);

using (var server = new HttpSelfHostServer(config))
{
server.OpenAsync().Wait();
Console.WriteLine("Press Enter to quit.");
Console.ReadLine();
}

}
}

更一般地说,为什么 ASP.NET 团队决定让 MapHttpRoute 方法如此令人困惑。为什么需要两个匿名对象......任何人都应该知道这些对象实际需要什么属性?

MSDN 没有提供任何帮助:http://msdn.microsoft.com/en-us/library/hh835483(v=vs.108).aspx

如果你问我的话,动态类型语言的所有痛苦却没有任何好处......

最佳答案

同意你的观点,这太疯狂了,你需要指定 data 参数应该从 POST 负载中绑定(bind),因为 Web API 自动假设它应该是查询字符串(因为它是简单类型):

public void SendData([FromBody] string data)

为了让事情变得更糟,你需要在 POST 有效负载前添加 = (是的,这不是拼写错误,而是等号):

curl -v -d "=test" http://localhost:8088/services/SendData

您可以在 this article 中阅读有关疯狂的更多信息。 。

或者停止疯狂并尝试 ServiceStack .

关于asp.net - 如何使用 WebApi 将 POST 映射到自定义操作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15639363/

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