我正在尋找一種方式,用戶只需使用電話號碼而不是用戶名和密碼註冊?使用Parse註冊電話號碼
和我怎樣才能像訪問其他類一樣訪問User類的數據,我無法對User類進行查詢?
ParseQuery<ParseObject> query2 = ParseQuery.getQuery("user");
query2.whereEqualTo("phone", "0624982192");
query2.getFirstInBackground(new GetCallback<ParseObject>()
{
public void done(ParseObject object, ParseException e)
{
if(e == null)
{
//To do if the phone number is found
}
else
{
if(e.getCode() == ParseException.OBJECT_NOT_FOUND)
{
// To do if the phone number is not found
}
有沒有辦法做到這一點?
你用來查詢User類的實際代碼是什麼?請張貼在你的問題(不作爲評論)。如果它在logcat中觸發錯誤,請將其發佈到您的問題中。 – 2015-01-27 00:41:58