我正在尝试使用提供程序包和 any_options 从我的 RESTAPI 获取一些帖子,但我遇到了一些麻烦。每次我运行应用程序时,它都会给我这个错误
<块引用>类型 '_InternalLinkedHashMap
这是它提到错误的地方:
Future<Either<String, List<Post>>> getPostsList() async {
var url = Uri.tryParse("myUrl");
try {
var response = await http.get(url);
final List responseBody = jsonDecode(response.body);
return Right(PostsList.fromJson(responseBody).postsLists);
} catch (e) {
print(e);
return Left(ApiErrorHandling.getDioException(e));
}
}
也在这里:
List<Post> postsList = List<Post>();
getPostsList() async {
final Either<String, List<Post>> result =
await ApiServices().getPostsList();
result.fold((e) {
setErrorMessage(e);
setUiStateAndNotify(UISTATE.ERROR);
}, (f) {
postsList = f;
setUiStateAndNotify(UISTATE.SUCCESS);
});
}
我真的很困惑为什么会显示这个错误,所以我想知道为什么。谢谢
答案 0 :(得分:0)
我打开了你的 api 结果,你感兴趣的列表位于响应体中的关键“data”处,因此将代码更改为:
final List responseBody = jsonDecode(response.body)["data"];