flutter 1.升级2.X在模型类中序列化JSON报错Non-nullable instance field 'title' must be initialized.
2021/9/17 6:04:57
本文主要是介绍flutter 1.升级2.X在模型类中序列化JSON报错Non-nullable instance field 'title' must be initialized.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
flutter 1.升级2.X在模型类中序列化JSON报错
Non-nullable instance field 'title' must be initialized. Try adding an initializer expression, or add a field initializer in this constructor, or mark it 'late'.
修改方案--添加late
原有代码
class Autogenerated { List<Result> result; Autogenerated({this.result}); Autogenerated.fromJson(Map<String, dynamic> json) { if (json['result'] != null) { result = new List<Result>(); json['result'].forEach((v) { result.add(new Result.fromJson(v)); }); } } Map<String, dynamic> toJson() { final Map<String, dynamic> data = new Map<String, dynamic>(); if (this.result != null) { data['result'] = this.result.map((v) => v.toJson()).toList(); } return data; } } class Result { String sId; String title; String status; String pic; String url; Result({this.sId, this.title, this.status, this.pic, this.url}); Result.fromJson(Map<String, dynamic> json) { sId = json['_id']; title = json['title']; status = json['status']; pic = json['pic']; url = json['url']; } Map<String, dynamic> toJson() { final Map<String, dynamic> data = new Map<String, dynamic>(); data['_id'] = this.sId; data['title'] = this.title; data['status'] = this.status; data['pic'] = this.pic; data['url'] = this.url; return data; } }
修改后的
class Autogenerated { late List<Result> result; Autogenerated({required this.result}); Autogenerated.fromJson(Map<String, dynamic> json) { if (json['result'] != null) { result = []; json['result'].forEach((v) { result.add(new Result.fromJson(v)); }); } } Map<String, dynamic> toJson() { final Map<String, dynamic> data = new Map<String, dynamic>(); if (this.result != null) { data['result'] = this.result.map((v) => v.toJson()).toList(); } return data; } } class Result { late String sId; late String title; late String status; late String pic; late String url; Result( {required this.sId, required this.title, required this.status, required this.pic, required this.url}); Result.fromJson(Map<String, dynamic> json) { sId = json['_id']; title = json['title']; status = json['status']; pic = json['pic']; url = json['url']; } Map<String, dynamic> toJson() { final Map<String, dynamic> data = new Map<String, dynamic>(); data['_id'] = this.sId; data['title'] = this.title; data['status'] = this.status; data['pic'] = this.pic; data['url'] = this.url; return data; } }
这篇关于flutter 1.升级2.X在模型类中序列化JSON报错Non-nullable instance field 'title' must be initialized.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-21Vue3教程:新手入门到实践应用
- 2024-12-21VueRouter4教程:从入门到实践
- 2024-12-20Vue3项目实战:从入门到上手
- 2024-12-20Vue3项目实战:新手入门教程
- 2024-12-20VueRouter4项目实战:新手入门教程
- 2024-12-20如何实现JDBC和jsp的关系?-icode9专业技术文章分享
- 2024-12-20Vue项目中实现TagsView标签栏导航的简单教程
- 2024-12-20Vue3入门教程:从零开始搭建你的第一个Vue3项目
- 2024-12-20从零开始学习vueRouter4:基础教程
- 2024-12-20Vuex4课程:新手入门到上手实战全攻略