gpt4 book ai didi

c# - 在 MVC Web API 中使用查询参数路由 POST

转载 作者:行者123 更新时间:2023-11-30 14:33:22 25 4
gpt4 key购买 nike

在 Web Apì 项目中,我想使用如下内容:

POST/我的 Controller /1

还有 POST/mycontroller/1?user=john

使用 GET 很容易,因为框架可以正确地路由到每个函数。但是,当我使用 POST 时,它不起作用。我在同一个 Controller 中有 2 个 POST 函数。例如:

void Post(int id, string content)

void Post(int id, string content, string user)

我希望当我调用 POST/mycontroller/1?user=john 时,框架路由到 Post(int id, string content, string user)

我知道我可以使用绑定(bind)模型,做一个模型类和一个唯一的 POST 函数,但这是一团糟,因为我有很多函数,我希望能够使用查询参数来路由正确的函数。可能吗?

最佳答案

尝试使用 [FromBody] 和 [FromUri] 属性声明参数,如下所示:

    public string Post(int id, [FromBody]string content, [FromUri] string user)
{
return "content = " + content + "user = " + user;
}

通过上面的代码我可以调用

/Test/1?user=Ryan

请求正文

“测试体”

结果是:

“content = Test Bodyuser = Ryan”

希望这对您有所帮助。

关于c# - 在 MVC Web API 中使用查询参数路由 POST,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16647386/

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