如何在Flutter中的Redux Store中存储变量?

问题描述 投票:0回答:1

题:

如何在Redux存储中存储变量以允许其他页面访问它?

现在的情况:

我试图将res变量存储在Redux商店中,以便我可以从任何其他页面访问它。这就是我到目前为止所做的:

码:

submit(String email, String password) async {
    print(email);
    print(password);
    var data = {
        'email': email,
        'password': password
    };

    http.Response response = await http.post(
            Uri.encodeFull("http://v2mobile.dico.se/api/login"),
            body: data,
            headers: {
            'Accept': 'application/json',
        });

    var res = json.decode(response.body);
    print(res);
}
redux dart flutter store
1个回答
0
投票

既然你不知道redux是如何工作的,我不会给你回复,但我会建议你学习redux生态系统,这里有一些链接:

flutter-redux

例子:

counter

shopping-list-app

© www.soinside.com 2019 - 2024. All rights reserved.