如何解决Flutter Persistence:如何将 List<dynamic> jsonDecode 到 List<ClassType>?
我有一个带有 Task 类的 Todo-List 应用程序。
我想用 jsonEncode 序列化一个任务列表,并将它们保存到 Docs 目录中的文件中。
在那之后,我希望能够重新序列化相同的列表并将它们转换为我的本机 List 数据类型(来自我从 jsonDecode 获得的 List
目前,我尝试过:
void reSerializeTaskList() async {
final directory = await getApplicationDocumentsDirectory();
File f = File('${directory.path}/new.txt');
String fileContent = await f.readAsstring();
List<dynamic> jsonList = jsonDecode(fileContent).cast<Task>(); // does not work
print("JSONSTRING: ${jsonList.runtimeType}");
print("$jsonList");
}
I/Flutter (29177): JSONSTRING: CastList<dynamic,Task>
E/Flutter (29177): [ERROR:Flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: type '_InternalLinkedHashMap<String,dynamic>' is not a subtype of type 'Task' in type cast
我的解决方法是遍历所有数组元素并使用我的 Task 类中的“fromJson”方法从值中构建一个 Task 类型:
void reSerializeTaskList() async {
final directory = await getApplicationDocumentsDirectory();
File f = File('${directory.path}/new.txt');
String fileContent = await f.readAsstring();
List<dynamic> jsonList = jsonDecode(fileContent);
List<Task> taskList = [];
for (var t in jsonList) {
print("T: $t and ${t.runtimeType}");
Task task = new Task();
taskList.add(task.fromJson(t));
}
print("JSONSTRING: ${jsonList.runtimeType}");
print("$jsonList");
print("$taskList");
print("$taskList.runtimeType");
}
我的任务类:
import 'dart:io';
class Task {
String name;
bool isDone;
Task({this.name,this.isDone = false});
void toggleDone() {
isDone = !isDone;
}
@override
String toString() {
// Todo: implement toString
return "${this.name} is done: $isDone";
}
Map<String,dynamic> toJson() {
return {
"name": this.name,"isDone": this.isDone,};
}
Task fromJson(Map<String,dynamic> json) {
this.name = json['name'];
this.isDone = json['isDone'];
return this;
}
}
但是可能有另一种(更好的)方法吗?这对我来说看起来很不完整...
解决方法
举个小例子,我就是这样做的
final jsonResponse = json.decode(jsonString);
final List<Customer> customers = jsonResponse.map<Customer>((jR) => Customer.fromJson(jR)).toList();
Customer 类中的 fromJson 看起来像这样
factory Customer.fromJson(Map<String,dynamic> json) => Customer(
id: json["id"] == null ? null : json["id"],changeDate: json["changeDate"] == null ? null : DateTime.parse(json["changeDate"]),name: json["name"] == null ? null : json["name"],);
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。