gpt4 book ai didi

asp.net-web-api - WebAPI : QueryString-Parameter is routing-relevant

转载 作者:行者123 更新时间:2023-12-02 14:13:46 24 4
gpt4 key购买 nike

我的网络 API 中有一个像这样的方法:

public HttpResponseMessage Get(string path)
{
}

这是对应的URL:

http://server/web/api/controller?path='param'

但我希望这个查询字符串参数是可选的。我期望,如果没有查询字符串参数,字符串“path”应该为空。

但这不起作用...我必须创建另一个方法(否则找不到“方法”)

public HttpResponseMessage Get()

没有别的办法吗?

最佳答案

尝试提供默认值并明确说明它来自 Uri。

public HttpResponseMessage Get([FromUri]string path = null)
{
}

关于asp.net-web-api - WebAPI : QueryString-Parameter is routing-relevant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13680155/

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