我正在学习 ASP.NET Web Core API。制作了这段代码:
[HttpPost("{post}")]
public string post_get([FromBody] string g)
{
return g;
}
我正在尝试使用以下 URL 发送 POST 请求:
http://localhost:61513/weatherforecast/post?g=gfh
给出错误信息。
如何为 POST 请求生成 URL?
我正在学习 ASP.NET Web Core API。制作了这段代码:
[HttpPost("{post}")]
public string post_get([FromBody] string g)
{
return g;
}
我正在尝试使用以下 URL 发送 POST 请求:
http://localhost:61513/weatherforecast/post?g=gfh
给出错误信息。
如何为 POST 请求生成 URL?
http://localhost:61513/weatherforecast/post?g=gfh
是一个 GET 请求。您将无法使用浏览器的 URL 字符串发送 POST 请求,请尝试下载Fiddler应用程序并使用它发送请求。
或者您可以直接在 C# 中发送 POST 请求。