JSON数据的解析和生成(Dart)
2021-01-02 08:28
标签:code ons depend 创建 程序 com his zab 根目录 打开 Intellij IDEA, 安装 Dart 插件 在 pubspec.yaml 的 dependencies 部分添加依赖 点击文件上方的 Pub get 链接下载依赖 example.dart 代码如下 在工程根目录下执行以下命令 该命令会生成 example.g.dart 文件 程序执行后的输出为 JSON数据的解析和生成(Dart) 标签:code ons depend 创建 程序 com his zab 根目录 原文地址:https://www.cnblogs.com/zwvista/p/13672431.html课题
创建工程
新建工程,选择 Dart -> Dart Command Line App, 输入 Dart SDK 路径,
然后点击 Next,输入工程名 example,完成向导。添加依赖
dependencies:
json_annotation: ^3.0.0
analyzer: ‘0.39.14‘
Dart
import ‘dart:convert‘;
import ‘package:json_annotation/json_annotation.dart‘;
part ‘example.g.dart‘;
@JsonSerializable()
class Persons {
List
生成 json 转换的代码
pub run build_runner build
输出
persons=[name=Joe,age=12]
{"persons":[{"name":"Joe","age":12}]}
{
"persons": [
{
"name": "Joe",
"age": 12
}
]
}
文章标题:JSON数据的解析和生成(Dart)
文章链接:http://soscw.com/index.php/essay/39535.html