浅谈Flutter解析JSON三种方式
程序员文章站
2022-06-24 10:39:40
dart实体类格式class categorymo { string name; int count; categorymo({this.name, this.count}); //将map转成mo...
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.0 dev_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内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!