如何使用 dart/flutter 中的共享首选项保存和获取列表列表
Posted
技术标签:
【中文标题】如何使用 dart/flutter 中的共享首选项保存和获取列表列表【英文标题】:How to save and get a list of lists using Shared preferences in dart/flutter 【发布时间】:2019-10-05 11:51:54 【问题描述】:我一直在尝试使用 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();
将二维列表转换为列表,然后保存。但是,即使它是一个仅包含字符串的列表,异常仍然存在。
【问题讨论】:
尝试:列表我们可以使用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
【讨论】:
被低估了。这个答案应该被接受。以上是关于如何使用 dart/flutter 中的共享首选项保存和获取列表列表的主要内容,如果未能解决你的问题,请参考以下文章
如何将对象列表中的布尔收藏夹保存到 Flutter 中的共享首选项