嗨,我读了关于基本解析特性的教程,等等。我正在使用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以查看发生了什么。例如,我想通知用户输入了错误的用户名或密码。
谢谢你

最佳答案

如果您需要查看异常,可以尝试在日志中显示或在您决定的位置显示,在您的代码中,在日志中显示log.d(nameofalert,mensaje),只需要查看logcat以识别您的异常

ParseUser.logInInBackground("Jerry", "showmethemoney", new LogInCallback() {
  public void done(ParseUser user, ParseException e) {



if (user != null) {
Log.d("user not null",e.toString());
} else {
Log.d("error",e.toString());
      // Signup failed. Look at the ParseException to see what happened.


  }
  }
});

关于android - 如何查看ParseException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16506433/

10-10 23:20