我想使用 intellij http 客户端在基于环境文件中的字符串数组的循环中执行多个 http 请求(在一个 http 文件中)。这可能吗?如果是,怎么办? 谢谢, 亚历克斯
是的,有可能。 例如,这将发送 5 个 GET 请求,每个请求对应数组中的每个 id。
< {%
request.variables.set("id", [1,2,3,4,5])
%}
GET http://localhost:8080/books/{{id}}
您可以在文档中找到更多示例: https://www.jetbrains.com/help/phpstorm/exploring-http-syntax.html#collections-in-variables