Comment encoder la liste en json?
Ceci est ma classe pour Json.
class Players{
List<Player> players;
Players({this.players});
factory Players.fromJson(List<dynamic> parsedJson){
List<Player> players = List<Player>();
players = parsedJson.map((i)=>Player.fromJson(i)).toList();
return Players(
players: players,
);
}
}
class Player{
final String name;
final String imagePath;
final int totalGames;
final int points;
Player({this.name,this.imagePath, this.totalGames, this.points});
factory Player.fromJson(Map<String, dynamic> json){
return Player(
name: json['name'],
imagePath: json['imagePath'],
totalGames: json['totalGames'],
points: json['points'],
);
}
}
J'ai réussi à décoder avec fromJson, le résultat est dans List. Maintenant que j'ai un autre joueur à ajouter dans json et que je veux encoder la liste en json, je n'ai aucune idée de le faire. Le résultat a toujours échoué.
var json = jsonDecode(data);
List<Player> players = Players.fromJson(json).players;
Player newPlayer = Player(name: _textEditing.text,imagePath: _imagePath,totalGames: 0,points: 0);
players.add(newPlayer);
String encode = jsonEncode(players.players);
De quoi ai-je besoin pour ajouter des joueurs ou un joueur?
Ajouter sur la classe:
Map<String,dynamic> toJson(){
return {
"name": this.name,
"imagePath": this.imagePath,
"totalGames": this.totalGames,
"points": this.points
};
}
et appeler
String json = jsonEncode(players.map((i) => i.toJson()).toList()).toString();
List jsonList = players.map((player) => player.toJson()).toList();
print("jsonList: ${jsonList}");