所以我试图在我的统一项目中使用 parse.com,直到我在我的用户数据库中添加了一个新列之前它都工作正常。每次我尝试访问我的 currentUser 时它都会抛出异常。
在下面显示的错误中,它提到我的 login.cs 脚本的第 20 行出现问题,但是,在我的登录场景和菜单场景中都调用了该脚本的第 20 行,但仅在菜单场景中引发了异常,而不是在登录场景中。
当我试图运行场景时,它说
AggregateException: Exception of type 'System.AggregateException' was thrown.
System.Threading.Tasks.Task.Wait ()
Parse.ParseUser.get_CurrentUser ()
login.Update () (at Assets/Scripts/login.cs:20)
这是我在第 20 行的一些代码:
string currentSceneName = SceneManager.GetActiveScene ().name;
if ((ParseUser.CurrentUser != null) && (currentSceneName != headToScene)) {
SceneManager.LoadScene (headToScene);
}
任何建议将不胜感激,谢谢!