如何在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);
}
答案 0 :(得分:0)
由于您不知道redux的工作原理,因此我不会给您任何答复,但我建议您学习redux生态系统,以下是一些链接的开头:
示例: