改造:@QueryName和varargs

时间:2017-10-18 14:21:31

标签: retrofit2

示例:

@GET("/friends")
Call<ResponseBody> friends(@QueryName String... filters);

使用foo.friends("contains(Bob)", "age(42)")

进行通话

和结果= /friends?contains(Bob)&age(42)

好的,它的工作正常。

但我需要下一个结果:

/friends?page=1&age=42&county=USA

是否可以通过varargs @QueryName String... filters

0 个答案:

没有答案