Retrofit 2.发布包含文件的对象列表

时间:2017-06-01 15:04:49

标签: java android retrofit retrofit2

我需要能够发送包含每个对象图像的对象列表。

{
  id: 0,
  file="/yy/xx.png",
  answers=[yellow, brown]
},
{
  id: 1,
  file="/zz/foo.png",
  answers=[not yellow, not brown]
}

我该怎么做呢?我现在的想法是做List<PartMap>并发布。

1 个答案:

答案 0 :(得分:0)

创建一个带有3个atrbutes的对象:int id,String file,String [] answers..then你设置这些对象,制作一个列表然后在体内发送@POST