有没有办法告诉 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
不使用参数来修复。还有其他方法可以解决这个问题吗?