这个问题与这篇文章有关。
我尝试了以下代码:
import 'dart:convert';
/*server side Post class */
class Post {
int post_id;
String title;
String description;
DateTime posted_at;
DateTime last_edited;
String user;
String editor;
int up_votes;
int down_votes;
int total_votes;
String links_to;
List<String> tags = new List();
Post.fromSQL(List sql_post) {
//initialization code, unrelated.
}
Map toJson(){
Map fromObject = {
'post_id' : post_id,
'title' : title,
'description' : description,
'posted_at' : posted_at,
'last_edited' : last_edited,
'user' : user,
'editor' : editor,
'up_votes' : up_votes,
'dwon_votes' : down_votes,
'total_votes' : total_votes,
'links_to' : links_to,
'tags' : tags
};
return fromObject;
//I use the code below as a temporary solution
//JSON.encode(fromObject, toEncodable: (date)=>date.toString());
}
}
我有一个临时解决方案,但我真的很想能够做到以下几点。
JSON.encode(posts, toEncodable: (date)=>date.toString())
其中posts
是 Post 对象的列表。我希望这会转换为 Post 类的 json 表示的 json 列表。我得到的是一个"Instance of 'Post'"
字符串列表。所以问题是,是否不再支持这种语法,还是我应该做一些不同的事情?