文件名称:json_mapper:Dart 的简单轻量级 JSON 映射实用程序
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-31 00:46:29
Dart
JSON 映射器 一个简单的轻量级 JSON 映射实用程序。 我如何使用它? 通过 Dart Pub 包管理器下载依赖项。 将以下行添加到您的 pubspec.yaml 依赖项中: json_mapper: "any" 完成后,使用pub get获取包,然后导入它: import 'package:json_mapper/json_mapper.dart' as jmap; 序列化一个对象: 使用serialize(Object obj)函数。 它接受任何 Dart 对象。 import 'package:json_mapper/json_mapper.dart' as jmap; class Contact { int name; int mobile; int email; } void main () { Contact bob = new Conta
【文件预览】:
json_mapper-master
----test()
--------serialize_test.dart(2KB)
----LICENSE(1KB)
----.gitignore(21B)
----pubspec.yaml(283B)
----lib()
--------json_mapper.dart(5KB)
----README.md(1KB)