gpt4 book ai didi

java - 如何使用vertx解析查询参数?

转载 作者:行者123 更新时间:2023-12-04 00:53:16 24 4
gpt4 key购买 nike

我想检查我们是否可以使用 getparam 从下面的请求 URL 解析 start_time 和 end_time

https://[--hostname--]/sample_app/apthroughput/getAllControllers?start_time=<start time value>&end_time=<end time value>&label=<selected label>

最佳答案

查询字符串的解析非常简单,除非同一个查询参数有多个值。

e.g.: https://[--hostname--]/sample_app/apthroughput/getAllControllers?type=xxx&type=yyy

在这种情况下,下面的代码有助于获取 List<String> 中的所有参数。

answer给出了一个想法。从它复制:
HttpServerRequest request = RoutingContext.request();
MultiMap params = request.params();
List<String> param = params.getAll("personId");
Here you can get list of personId. URI be like

localhost:8081/myApi?personId=1&personId=2&personId=3

关于java - 如何使用vertx解析查询参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40035385/

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