json转实例对象相关

来源:9-4 JSON解析与复杂模型转换实用技巧【网络请求离不开它】

parkni

2019-11-22

老师请问flutter有将json直接转为实例对象的库或组件吗?类似android中的Gson这种的。。。

class CommonModel {
  final String icon;
  final String title;
  final String url;
  final String statusBarColor;
  final bool hideAppBar;

  CommonModel({this.icon, this.title, this.url, this.statusBarColor, this.hideAppBar});

  // 每次都要写这个工厂方法吗?
  factory CommonModel.fromJson(Map<String, dynamic> json) => CommonModel(
      icon: json["icon"],
      title: json["title"],
      url: json["url"],
      statusBarColor: json["statusBarColor"],
      hideAppBar: json["hideAppBar"]);
}
写回答

2回答

CrazyCodeBoy

2019-11-24

有个工具可以参考下,通过注解的方式实现json转换:


1
0

CrazyCodeBoy

2019-11-24

有个工具可以参考下,通过注解的方式实现json转换:


0
0

Flutter从入门到进阶 实战携程网App 一网打尽核心技术

解锁Flutter开发新姿势,,系统掌握Flutter开发核心技术。

4788 学习 · 3270 问题

查看课程