如何在 Retrofit 中解析没有任何对象的 JSON 数组?
How to parse JSON array without any object in Retrofit?
我正在使用 Retrofit 和 GSON。我有一个 JSON 响应作为 JSON 数组,但我不知道如何使用模型 class 来解析它。我的回复如下:
[
"One",
"Two",
"Three",
"Four",
"Five",
"Six",
"Seven",
"Eight"
]
只需在回调中调用一个字符串列表,它就可以完成工作...
new Callback<List<String>>().
我正在使用 Retrofit 和 GSON。我有一个 JSON 响应作为 JSON 数组,但我不知道如何使用模型 class 来解析它。我的回复如下:
[
"One",
"Two",
"Three",
"Four",
"Five",
"Six",
"Seven",
"Eight"
]
只需在回调中调用一个字符串列表,它就可以完成工作...
new Callback<List<String>>().