I'm decoding a response body and I'm getting the error:
'List<dynamic>' is not a subtype of type 'List<Example>'
I'm parsing a JSON array of JSON objects, one of the fields is a list of objects as well and I suspect my issue stems from that. I am also using the json_serializable library. Below is my code, I omitted some fields out and changed some variable names but it represents the same code:
import 'package:json_annotation/json_annotation.dart';
part 'example_model.g.dart';
@JsonSerializable()
class Example {
(some fields here)
final List<Random> some_urls;
final List<String> file_urls;
const Example({
(some fields here)
this.some_urls,
this.file_urls,
});
factory Example.fromJson(Map<String, dynamic> json) =>
_$ ExampleFromJson(json);
}
@JsonSerializable()
class Random {
final String field_1;
final int field_2;
final int field_3;
final int field_4;
final bool field_5;
constRandom(
{this.field_1, this.field_2, this.field_3, this.field_4, this.field_5});
factory Random.fromJson(Map<String, dynamic> json) => _$RandomFromJson(json);
}
from the .g dart file that json_serializable made (ommited the encoding part):
Example _$ExampleFromJson(Map<String, dynamic> json) {
return Example(
some_urls: (json['some_urls'] as List)
?.map((e) =>
e == null ? null : Random.fromJson(e as Map<String, dynamic>))
?.toList(),
file_urls: (json['file_urls'] as List)?.map((e) => e as String)?.toList(),
}
Random _$RandomFromJson(Map<String, dynamic> json) {
return Random(
field_1: json['field_1'] as String,
field_2: json['field_2'] as int,
field_3: json['field_3'] as int,
field_4: json['field_4'] as int,
field_5: json['field_5'] as bool);
}
This is my future function:
Future<List<Example>> getData(int ID, String session) {
String userID = ID.toString();
var url = BASE_URL + ":8080/example?userid=${userID}";
return http.get(url, headers: {
"Cookie": "characters=${session}"
}).then((http.Response response) {
if (response.statusCode == 200) {
var parsed = json.decode(response.body);
List<Example> list = parsed.map((i) => Example.fromJson(i)).toList();
return list;
}
}).catchError((e)=>print(e));
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…