先贴代码:
List<IdentityHashMap> groups = nm.getList("groups", IdentityHashMap.class);
我提交的参数(contentType:application/json)为:
{
"groups":[
{
"性别":"男",
"爱好":"读书",
"爱好":"音乐"
}
]
}
用的 @AdaptBy(type = JsonAdaptor.class)
但是取到的参数为:"性别":"男", "爱好":"音乐" 会丢失一个,难道会先转化为hashMap?