gpt4 book ai didi

asp.net-core - Ocelot API 网关可选参数

转载 作者:行者123 更新时间:2023-12-04 10:47:26 29 4
gpt4 key购买 nike

有没有办法告诉 Ocelot 一个参数是可选的?

假设下面的查询参数是可选的:

"DownstreamPathTemplate": "/api/SearchAPI/?query={query}",
"DownstreamScheme": "https",
"DownstreamHostAndPorts": [
{
"Host": "localhost",
"Port": 5000
}
],
"UpstreamPathTemplate": "/api/SearchAPI/?query={query}",
"UpstreamHttpMethod": [ "GET" ],
"FileCacheOptions": {
"TtlSeconds": 60
}

如果我向 /SearchAPI/?query= 发送请求,我会收到 404 作为响应。我需要复制 Upstream 以不使用参数来修复。还有其他方法可以解决这个问题吗?

最佳答案

你可以像这样使用{everything}

"DownstreamPathTemplate": "/api/SearchAPI/{everything}"

关于asp.net-core - Ocelot API 网关可选参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59637188/

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