Flutter JSON转Dart模型插件json2dart_dbffi的使用

发布于 1周前 作者 yuanlaile 来自 Flutter

Flutter JSON转Dart模型插件json2dart_dbffi的使用

json2dart_dbffi 的数据库支持

json2dart_dbffi 是一个用于生成 Dart 模型类的插件,同时支持 SQLite 数据库的表结构生成和升级。以下是其主要特点:

  • 可根据 model 生成表结构
  • 支持表升级

一. 模型以及表的生成

在使用 json2dart_dbffi 插件时,首先需要选择一个 JSON 模型,并将其复制到插件中。

插件面板

根据上方图片显示:

  • ClassName:只需填写下划线形式的文件名(插件会自动生成与模型名称对应的驼峰式类名)。
  • 勾选 Sqlite Support:可以在右侧输入框中定义主键(primaryKey)。如果主键在 JSON 中已存在,则仅添加 PRIMARY KEY 属性;如果不存在,则会自动新增一个带 PRIMARY KEYAUTOINCREMENT 的属性。
  • JSON 模型可以选择任意目录,生成的模型会保存在指定的文件夹中,而 DAO 类会生成在 lib/database 目录下,并且在新增表时会自动插入生成的 SQL 语句到相应方法中。

1. JSON 示例

下面是一个简单的 JSON 示例:

{
  "name": "default",
  "playlist_count": "",
  "create_time": 0,
  "position": 1,
  "playlist_ids": [
    1
  ]
}

2. 调用插件生成模型和 DAO 类

调用插件后,生成的模型类和 DAO 类如下所示。

生成的模型类
import 'dart:convert';

import 'package:json2dart_safe/json2dart.dart';

class CategoryDaoTest with BaseDbModel {
  String? playlistCount;
  List<int>? playlistIds;
  int? createTime;
  String? name;
  int? position;
  int? categoryId;

  CategoryDaoTest({
    this.playlistCount,
    this.playlistIds,
    this.createTime,
    this.name,
    this.position,
    this.categoryId,
  });

  [@override](/user/override)
  Map<String, dynamic> toJson() => {
        'playlist_count': playlistCount,
        'playlist_ids': playlistIds,
        'create_time': createTime,
        'name': name,
        'position': position,
        'category_id': categoryId,
      };

  CategoryDaoTest.fromJson(Map json) {
    playlistCount = json.asString('playlist_count');
    playlistIds = json.asList<int>('playlist_ids');
    createTime = json.asInt('create_time');
    name = json.asString('name');
    position = json.asInt('position');
    categoryId = json.asInt('category_id');
  }

  static CategoryDaoTest toBean(Map json) => CategoryDaoTest.fromJson(json);

  [@override](/user/override)
  Map<String, dynamic> primaryKeyAndValue() => {"category_id": categoryId};

  [@override](/user/override)
  int get hashCode => categoryId?.hashCode ?? super.hashCode;

  [@override](/user/override)
  bool operator ==(Object other) {
    if (other is CategoryDaoTest && categoryId != null) {
      return other.categoryId == categoryId;
    }
    return super == other;
  }

  [@override](/user/override)
  String toString() => jsonEncode(toJson());
}
生成的 DAO 类
import 'package:json2dart_safe/json2dart.dart';
import 'package:gesound/common/model/category_dao_test.dart';

class CategoryDaoTestDao extends BaseDao<CategoryDaoTest> {
  static const String _tableName = 'category_dao_test';

  CategoryDaoTestDao() : super(_tableName, 'category_id');

  static String tableSql([String? tableName]) => """
      CREATE TABLE IF NOT EXISTS `${tableName ?? _tableName}` (
        `playlist_count` TEXT,
        `playlist_ids` TEXT,
        `create_time` INTEGER,
        `name` TEXT,
        `position` INTEGER,
        `category_id` INTEGER PRIMARY KEY AUTOINCREMENT
      )""";

  [@override](/user/override)
  CategoryDaoTest fromJson(Map json) => CategoryDaoTest.fromJson(json);
}

更多关于Flutter JSON转Dart模型插件json2dart_dbffi的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

1 回复

更多关于Flutter JSON转Dart模型插件json2dart_dbffi的使用的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html


json2dart_dbffi 是一个用于将 JSON 数据转换为 Dart 模型的 Flutter 插件。它可以帮助开发者快速生成 Dart 类,以便在 Flutter 应用中处理 JSON 数据。以下是如何使用 json2dart_dbffi 插件的步骤:

1. 安装插件

首先,你需要在 pubspec.yaml 文件中添加 json2dart_dbffi 插件的依赖:

dependencies:
  flutter:
    sdk: flutter
  json2dart_dbffi: ^1.0.0  # 请使用最新版本

然后运行 flutter pub get 来安装插件。

2. 使用插件生成 Dart 模型

json2dart_dbffi 提供了一个命令行工具来生成 Dart 模型。你可以通过以下步骤来使用它:

2.1 准备 JSON 数据

首先,准备一个 JSON 文件或 JSON 字符串。例如,假设你有以下 JSON 数据:

{
  "name": "John Doe",
  "age": 30,
  "email": "john.doe@example.com",
  "isActive": true
}

2.2 运行命令生成 Dart 模型

在终端中运行以下命令来生成 Dart 模型:

flutter pub run json2dart_dbffi:generate -i path/to/your/json/file.json -o lib/models
  • -i--input:指定输入的 JSON 文件路径。
  • -o--output:指定生成的 Dart 模型文件的输出目录。

例如:

flutter pub run json2dart_dbffi:generate -i assets/sample.json -o lib/models

2.3 查看生成的 Dart 模型

生成的 Dart 模型文件将保存在指定的输出目录中。例如,生成的 User 类可能如下所示:

import 'dart:convert';

class User {
  String name;
  int age;
  String email;
  bool isActive;

  User({
    required this.name,
    required this.age,
    required this.email,
    required this.isActive,
  });

  factory User.fromJson(Map<String, dynamic> json) {
    return User(
      name: json['name'],
      age: json['age'],
      email: json['email'],
      isActive: json['isActive'],
    );
  }

  Map<String, dynamic> toJson() {
    return {
      'name': name,
      'age': age,
      'email': email,
      'isActive': isActive,
    };
  }
}

3. 在 Flutter 应用中使用生成的模型

你可以在 Flutter 应用中使用生成的模型来解析和序列化 JSON 数据。例如:

import 'dart:convert';
import 'models/user.dart';

void main() {
  String jsonString = '''
  {
    "name": "John Doe",
    "age": 30,
    "email": "john.doe@example.com",
    "isActive": true
  }
  ''';

  Map<String, dynamic> jsonMap = jsonDecode(jsonString);
  User user = User.fromJson(jsonMap);

  print('Name: ${user.name}');
  print('Age: ${user.age}');
  print('Email: ${user.email}');
  print('Is Active: ${user.isActive}');
}

4. 其他选项

json2dart_dbffi 还支持其他一些选项,例如:

  • -c--class-name:指定生成的 Dart 类的名称。
  • -p--prefix:为生成的类添加前缀。
  • -s--suffix:为生成的类添加后缀。

例如:

flutter pub run json2dart_dbffi:generate -i assets/sample.json -o lib/models -c MyUser
回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!