通过@RequestHeader在Rest API中传递List<String>。

huangapple go评论78阅读模式
英文:

Passing List<String> in @RequestHeader Restapi

问题

我想通过请求头在我的控制器中传递字符串列表 @RequestHeader("list") final List<String> listOfString。可以使用这种方式。我如何通过 Postman 在头部中传递字符串列表?

list={item1,item2,item3}。当我想通过 Postman 进行测试时,这并不起作用。有什么方法吗?

英文:

I want to pass list of string in my controller via Request Header @RequestHeader(&quot;list&quot;) final List&lt;String&gt; listOfString. Can this be used. How can I pass list of string in header via Postman?

list={item1,item2,item3}. This is not working while I want to test via Postman. Is there any way?

答案1

得分: 2

你可以按照以下方式添加页眉:

通过@RequestHeader在Rest API中传递List<String>。

在页眉选项卡中,只需用逗号将其添加进去。

英文:

You can add the header this way

通过@RequestHeader在Rest API中传递List<String>。

In the headers tab, just add it with comas.

答案2

得分: 0

你可以像这样使用JSON数组:["data1", "data2"]

英文:

you can use JSON Array Like This: ["data1","data2"]

huangapple
  • 本文由 发表于 2020年7月24日 09:03:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/63065309.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定