我正在尝试flutter,我已登录http post进行登录。
我创建了一个文件来处理我的http request。在文件中写了以下代码:
Map data;
Future<Map> logIn(email, password) async {
String url = "...";
Object userData = { "email": email, "password": password };
var userDataBody = JSON.encode(userData);
Map userHeader = {"Content-type": "application/json", "Accept": "application/json"};
http.Response response = await http.post(
Uri.encodeFull(url),
headers: userHeader,
body: userDataBody
);
data = JSON.decode(response.body);
print(data);
return data;
}
Http返回以下数据:
{message: Login Successful, status: success}
以上编码用于stateful widget:
// imported the file above as userService
import 'services/user_services.dart' as userService;
// created a method for a button
void submitData() {
final form = formKey.currentState;
if (form.validate()) { // no validations so far
form.save(); // save email and password
userService.logIn("$userEmail", "$userPassword"); // .then(JSON.decode(responseContent['message']));
}
}
// button in container
new Container(
padding: new EdgeInsets.all(20.0),
child: new RaisedButton(
onPressed: submitData,
child: new Text('LogIn'),
)
),
我的问题是,使用返回的json数据,我很难接受状态返回(成功)/消息(登录成功)并做任何我喜欢的事情。
答案 0 :(得分:1)
不确定问题是什么,但我想你想要的是
void submitData() async {
...
var result = await userService.logIn("$userEmail", "$userPassword");
}
通过这种方式你可以掌握结果。
这是你无法从异步调用中恢复同步的方法。