gpt4 book ai didi

android - 如何使用 retrofit2 将列表发送到 API

转载 作者:太空宇宙 更新时间:2023-11-04 05:30:43 25 4
gpt4 key购买 nike

我使用 EVE 开发了一个 API。

这是模式:

central_schema = {
'name': {
'type': 'string',
'required': True,
},
'id_account': {
'type': 'list',
}
}

我正在尝试使用 retrofit 2 发送列表。我使用 POSTMAN 尝试了 API。每次我收到这样的回复时:

id account "must be of list type"

我使用了很多类型的请求(PATCHPOSTPUT),但我仍然得到同样的错误。

最佳答案

您可以像下面这样创建模型类:

public class Model{
public String name;
public List<String> id_account;
}

并在改造 2 中使用它。

它将生成以下 json:

{
"name": "xyz",
"id_account" : [
"1",
"2"
]
}

关于android - 如何使用 retrofit2 将列表发送到 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37244959/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com