溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Flutter怎么對JSON進(jìn)行解析

發(fā)布時間:2021-03-30 15:17:28 來源:億速云 閱讀:202 作者:Leah 欄目:開發(fā)技術(shù)

本篇文章為大家展示了使用Flutter怎么對JSON進(jìn)行解析,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

Dart實體類格式

class CategoryMo {
 String name;
 int count;

 CategoryMo({this.name, this.count});
 //將map轉(zhuǎn)成mo
 CategoryMo.fromJson(Map<String, dynamic> json) {
 name = json['name'];
 count = json['count'];
 }
 //將mo轉(zhuǎn)成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轉(zhuǎn)換與使用

var personMap = {
 "name": "Jack",
 "age": 20
};
Person person = Person.fromJson(personMap);
print('name:${person.name}');
print('age:${person.age}');

方案二:生產(chǎn)力工具:json-to-dart插件自動生成實體類

方案三:生產(chǎn)力工具: 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';

///這個標(biāo)注是告訴生成器,這個類是需要生成Model類的
@JsonSerializable()
class Result {
 //定義構(gòu)造方法
 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);
}

因為實體類的生成代碼還不存在,所以上代碼會提示一-些錯誤是正?,F(xiàn)象

執(zhí)行build生成實體類

flutter packages pub run build_runner build

如何選擇

使用Flutter怎么對JSON進(jìn)行解析

上述內(nèi)容就是使用Flutter怎么對JSON進(jìn)行解析,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI