応答本文をデコードしていて、エラーが発生しています。
'List<dynamic>' is not a subtype of type 'List<Example>'
私はjsonオブジェクトのjson配列を解析しています。フィールドの1つはオブジェクトのリストでもあり、私の問題はそれに起因していると思います。また、json_serializableライブラリも使用しています。以下は私のコードですが、いくつかのフィールドを省略し、いくつかの変数名を変更しましたが、同じコードを表しています。
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);
}
json_serializableが作成した.g Dartファイルから(エンコード部分は省略):
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);
}
これは私の将来の機能です:
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));
}
このコードはList<dynamic>
parsed.map((i) => Example.fromJson(i)).toList();
代わりに使用
List<Example> list = List<Example>.from(parsed.map((i) => Example.fromJson(i)));
あるいは単に
var /* or final */ list = List<Example>.fromn(parsed.map((i) => Example.fromJson(i)));
こちらもご覧ください
ギュンターのソリューションを試したところ、'MappedListIterable<dynamic, dynamic>' is not a subtype of type 'Iterable<Example>
を受け取っていました。
var parsed = json.decode(response.body);
var list = parsed.map((i) => Example.fromJson(i)).toList();
解析されたデータをList<dynamic>
にキャストすると(dynamic
に移動するだけでなく)、この問題は解決されました。
var parsed = json.decode(response.body) as List<dynamic>;
var list = parsed.map((i) => Example.fromJson(i)).toList();