gpt4 book ai didi

flutter - 如何在 Flutter Web 中保存到 Web 本地存储

转载 作者:IT老高 更新时间:2023-10-28 12:40:55 34 4
gpt4 key购买 nike

我有一个使用 flutter for web 构建的网站,目前正在尝试保存到网络本地存储或 cookie,但似乎找不到任何插件或存档方式。 p>

最佳答案

您可以使用 dart:html

中的 window.localStorage
import 'dart:html';

class IdRepository {
final Storage _localStorage = window.localStorage;

Future save(String id) async {
_localStorage['selected_id'] = id;
}

Future<String> getId() async => _localStorage['selected_id'];

Future invalidate() async {
_localStorage.remove('selected_id');
}
}

关于flutter - 如何在 Flutter Web 中保存到 Web 本地存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56417667/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com