0

我想将 sharedpreferences 键保存在我的智能手机上。键是表中的表 ID(自动增量)。现在我想在新标签中显示这些最喜欢的记录。

如何在我的数据库表中使用这些键进行选择?或者是否可以将它们与我在开始时选择的 json 数据集中的所有记录进行比较以显示表中的所有记录?

目前我正在将密钥保存在字符串中。然后在列表视图中显示它们。

  Future<void> _save() async {
    SharedPreferences prefs = await SharedPreferences.getInstance();
    final key = '${widget.id}';
    final value = '${widget.id}';
    prefs.setString(key, value);
  }


  Future<List<Widget>> getAllPrefs() async {
    SharedPreferences prefs = await SharedPreferences.getInstance();
    //final SharedPreferences prefs = await PrefStore().prefs;
    return prefs
        .getKeys()
        .map<Widget>((key) => ListTile(
      title: Text(key),
      subtitle: Text(prefs.get(key).toString()),
    ))
        .toList(growable: false);
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: FutureBuilder<List<Widget>>(
          future: getAllPrefs(),
          builder: (context, snapshot) {
            if (!snapshot.hasData) return Container();
            return ListView(
              children: snapshot.data,
            );
          }),
    );
  }

非常感谢。

4

1 回答 1

0

我有一个好主意,效果很好,见下文。但是,如果您有更好的解决方案,请也发布它。

我只为 getInstance 和 SQL-Select 使用了一个 future。

// get the keys, convert to string, change {1,2,3} to (1,2,3) with strings/substring
    SharedPreferences prefs = await SharedPreferences.getInstance();
    String allkeys = prefs.getKeys().toString();
    keylist = '(' + allkeys.substring(1, allkeys.length - 1) + ')';

然后使用 keylist 选择如下:

select * from table where table.id in $keylist
// means: ... where table.id in (1,2,3)

如果您需要更多代码,请发表评论,谢谢

于 2021-03-29T14:54:24.917 回答