我在ASP中有一个HTTP POST API。NET核心,如下所示。
[Route("{code}/bank")]
public IHttpActionResult Get([FromUri] string code, [FromBody] BankFilter bank)
{
return Ok();
}
如何在ocelot中为BankFilter模型类配置下游和上游?
"DownstreamPathTemplate":"{code}/银行"——如何接受bank filter模型类?
"UpstreamPathTemplate":"{code}/银行"——如何接受bank filter模型类?
您不需要配置任何内容。Ocelot会将请求主体传递给下游服务。