如何使用dart / flutter中的“共享”偏好设置保存和获取列表列表

时间:2019-05-18 11:13:44

标签: android list dart flutter

我一直在尝试使用dart中的共享首选项保存列表的列表。例如,我有一个列表List data = [["dave","21","M"],["steven","22","F"]],我试图按原样保存和加载,但是应用程序不断抛出Unhandled Exception: type 'List<dynamic>' is not a subtype of type 'List<String>'

我尝试使用List new_data = data.expand((i) => i).toList();将2d列表转换为列表,然后保存。但尽管如此,该异常仍然存在,即使它是仅包含字符串的列表。

1 个答案:

答案 0 :(得分:2)

我们可以使用 jsonEncodejsonDecode() 来获取列表:

import 'package:shared_preferences/shared_preferences.dart';

List data = [["dave","21","M"],["steven","22","F"]];

handleData() async {
  var prefs = await SharedPreferences.getInstance();
  prefs.setString('key', jsonEncode(data)); // Encode the list here
  print(jsonDecode(prefs.getString('key'))); // Decode then print it out
}