我正在尝试将旧项目迁移到Retrofit库,并且该项目具有相当棘手的API。所以我有一个这样的查询模板:
@GET(value = "products/search")
Single<ProductSearchResponse> productSearch();
我必须在以下模板的此处添加一些参数:
filter[attributeId]=attributeValueId
例如:
products/search?filter[1]=10&filter[1]=11&filter[2]=20&filter[2]=21
这就是API的工作方式,我无法对其进行更改。我知道我们可以将列表作为参数传递,如下所示:
@Query("filter") List<Integer> attributeValueIds
但是如何动态设置参数名称呢?
答案 0 :(得分:0)
您可以像这样使用@QueryMap
注释:
public interface NewsService() {
@GET("/news")
Call<List<News>> getNews(
@QueryMap Map<String, String> options
);
}
Map<String, String> data = new HashMap<>();
data.put("author", "Marcus");
data.put("page", String.valueOf(2));
...
newsService.getNews(data);
更多详细信息:https://futurestud.io/tutorials/retrofit-2-add-multiple-query-parameter-with-querymap
答案 1 :(得分:0)
通过@ILLIA DEREVIANKO(https://github.com/square/retrofit/issues/1324)发布的链接,我设法解决了此类问题:
public class ProxyRetrofitQueryMap extends HashMap<String, Object> {
public ProxyRetrofitQueryMap(Map<String, Object> m) {
super(m);
}
@Override
public Set<Entry<String, Object>> entrySet() {
Set<Entry<String, Object>> originSet = super.entrySet();
Set<Entry<String, Object>> newSet = new HashSet<>();
for (Entry<String, Object> entry : originSet) {
String entryKey = entry.getKey();
if (entryKey == null) {
throw new IllegalArgumentException("Query map contained null key.");
}
Object entryValue = entry.getValue();
if (entryValue == null) {
throw new IllegalArgumentException(
"Query map contained null value for key '" + entryKey + "'.");
}
else if(entryValue instanceof List) {
for(Object arrayValue:(List)entryValue) {
if (arrayValue != null) { // Skip null values
Entry<String, Object> newEntry = new AbstractMap.SimpleEntry<>(entryKey, arrayValue);
newSet.add(newEntry);
}
}
}
else {
Entry<String, Object> newEntry = new AbstractMap.SimpleEntry<>(entryKey, entryValue);
newSet.add(newEntry);
}
}
return newSet;
}
}
有了这个,我们可以只使用一个映射,其中key是唯一的参数名称,value是一个字符串列表,它是此参数的值。像这样:
ProxyRetrofitQueryMap map = new ProxyRetrofitQueryMap();
List<String> values1 = new ArrayList<>();
values1.add("10");
values1.add("11");
map.put("filter[1]", values1);
List<String> values2 = new ArrayList<>();
values1.add("20");
values1.add("21");
map.put("filter[2]", values2);
答案 2 :(得分:0)
您可以使用arrayList!类似于下面的代码。
@GET(value = "products/search")
Single<ProductSearchResponse> productSearch(
@Query("status") List<Integer> status
);
ArrayList<Integer> queryStatus = new ArrayList<>();
queryStatus.add(0);
queryStatus.add(1);
queryStatus.add(2);
productService.productSearch(queryStatus);
您的网址就是这样-> {url}?status = 0&status = 1&status = 2