我一直在尝试使用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列表转换为列表,然后保存。但尽管如此,该异常仍然存在,即使它是仅包含字符串的列表。
答案 0 :(得分:2)
我们可以使用 jsonEncode
和 jsonDecode()
来获取列表:
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
}