Retrofit2 - 使用重复键发送动态密钥

时间:2017-08-09 13:54:12

标签: android retrofit retrofit2

我需要发送带有重复键的动态键。

这就是我需要的:

https://myApi.com/pepole?name=yoni&name=albert&brand=nike

所有关键都是动态(名称,品牌)。

所以要动态地使用@Querymap进行exmpale:

Map<String, String> parms = new HashMap<>();

parms.put(dynamicKey, dynamicValue);

parms.put(anotherDynamicKey,anotherDynamicValue);

这是我的界面:

@Get("pepole")
Call<List> searchPepole(
@Querymap Map<String, String> options);

并且工作正常但我的问题在我有重复的密钥时开始。

那么如何使用带有重复键的动态键进行调用?

0 个答案:

没有答案