当我点击SwitchButton
时,我将ID保存在SharedPreferences
中。
我收回了这个ID,并请求了我的API。
由于有了这个ID,我收回了所有技术。
但是问题是,我的列表在每个ID处都会重置。
编辑:
Theme theme;
List<Technology> technos = [];
class Technology {
int id;
String name;
Technology({this.id, this.name});
factory Technology.fromJson(Map<String, dynamic> json) {
return Technology(
id: json['id'],
name: json['name'],
);
}
Future<List<Technology>> getTechnologies() async {
String id = await Theme().getTheme();
String url = 'http://10.0.2.2:3000/v1/api/theme/${id}/technology';
String token = await Candidate().getToken();
final response = await http.get(url, headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer ${token}',
});
if (response.statusCode == 200) {
List technosList = jsonDecode(response.body);
for (var technoMap in technosList) {
technos.add(Technology.fromJson(technoMap));
}
return technos;
} else {
throw Exception('Failed to load technos');
}
}
}
答案 0 :(得分:0)
由于您在每个API上都覆盖technos
,因此先前的数据会丢失。
您可以将此technos
设置为该Screen
的全局对象,也可以使用BLOC
方法。
不在List<Technology> technos = [];
中全局使用getTechnologies()
。
可以添加
technos.add(Technology.fromJson(technoMap));
答案 1 :(得分:0)
我编辑了方法:
Future<List<String>> getListTheme() async {
List<String> themes = List<String>();
final SharedPreferences preferences = await SharedPreferences.getInstance();
for (String key in preferences.getKeys()) {
if (key == 'token') {
preferences.containsKey(key);
} else {
themes.add(jsonEncode(preferences.getStringList(key)));
}
}
return themes;
}