浅谈Flutter解析JSON三种方式

时间:2021-05-19

Dart实体类格式

class CategoryMo { String name; int count; CategoryMo({this.name, this.count}); //将map转成mo CategoryMo.fromJson(Map<String, dynamic> json) { name = json['name']; count = json['count']; } //将mo转成map,可缺省 Map<String, dynamic> toJson() { final Map<String, dynamic> data = new Map<String, dynamic>(); data['name'] = this.name; data['count'] = this.count; return data; }}

方案一:手写实体类

person.json

{ "name": "Jack", "age": 20}

model转换与使用

var personMap = { "name": "Jack", "age": 20};Person person = Person.fromJson(personMap);print('name:${person.name}');print('age:${person.age}');

方案二:生产力工具:json-to-dart插件自动生成实体类

方案三:生产力工具: json_ serializable使用技巧

安装插件

dependencies:... dio: ^3.0.10 json_annotation: ^3.1.0dev_dependencies:... json_serializable: ^3.5.0 build_runner: ^1.0.0

配置实体类

{ "code": 0, "method": "GET", "requestPrams": "dd"}import 'package:json_annotation/json_annotation.dart';// result.g.dart 将在我们运行生成命令后自动生成part 'result.g.dart';///这个标注是告诉生成器,这个类是需要生成Model类的@JsonSerializable()class Result { //定义构造方法 Result(this.code, this.method, this.requestPrams); //定义字段 int code; String method; String requestPrams; //固定格式,不同的类使用不同的mixin即可 factory Result.fromJson(Map<String, dynamic> json) => _$ResultFromJson(json); //固定格式 Map<String, dynamic> toJson() => _$ResultToJson(this);}

因为实体类的生成代码还不存在,所以上代码会提示一-些错误是正常现象

执行build生成实体类

flutter packages pub run build_runner build

如何选择


到此这篇关于浅谈Flutter解析JSON三种方式的文章就介绍到这了,更多相关Flutter解析JSON内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章