嗨,我阅读了有关基本解析功能等的教程,并且我正在使用 ParseUser 功能。从教程中可以看出:
ParseUser.logInInBackground("Jerry", "showmethemoney", new LogInCallback() {
public void done(ParseUser user, ParseException e) {
if (user != null) {
// Hooray! The user is logged in.
} else {
// Signup failed. Look at the ParseException to see what happened.
}
}
});
我想知道如何查看 ParseException 以了解发生了什么。例如,我想通知用户输入了错误的用户名或密码错误。
谢谢