我正在寻找一种方法,如何检查Android中的Parse
数据类中是否已存在电话号码。
例如,检查电话号码是否已存在,如果是,则返回true,如果不是假。
我用过这个:
query1.whereEqualTo("phone", "0644444444");
query1.findInBackground(new FindCallback<ParseObject>() {
并没有多大帮助。
答案 0 :(得分:8)
在查询中使用getFirstInBackground(),然后只需检查是否存在ParseException.OBJECT_NOT_FOUND异常。如果有,那么该物体不存在,否则它就在那里!使用getFirstInBackground比findInBackground更好,因为getFirstInBackground只检查并返回1个对象,而findInBackground可能必须查询MANY对象。
实施例
query1.whereEqualTo("phone", "0644444444");
query1.getFirstInBackground(new GetCallback<ParseObject>()
{
public void done(ParseObject object, ParseException e)
{
if(e == null)
{
//object exists
}
else
{
if(e.getCode() == ParseException.OBJECT_NOT_FOUND)
{
//object doesn't exist
}
else
{
//unknown error, debug
}
}
}
});
答案 1 :(得分:0)
通常,这些Parse回调会向您传递ParseException,您可以检查异常的状态代码。
query1.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> objects, ParseException ex) {
if(ex != null) {
final int statusCode = ex.getCode();
if (statusCode == ParsseException.OBJECT_NOT_FOUND) {
// Object did not exist on the parse backend
}
}
else {
// No exception means the object exists
}
}
}
您可以从getCode
,here's the full list on Parse's docs中找到许多其他更具体的错误代码。一些类型的数据具有特定代码,例如在处理注册/登录时,EMAIL_NOT_FOUND
有特定代码。
答案 2 :(得分:0)
你可以尝试这样的事情:
ParseQuery<ParseObject> query = ParseQuery.getQuery(PARSE_CLASS_NAME);// put name of your Parse class here
query.whereEqualTo("phoneList", "0644444444");
query.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> phoneList, ParseException e) {
if (e == null) {
handleIsUserNumberFound(! phoneList.isEmpty())
} else {
Log.d("error while retrieving phone number", "Error: " + e.getMessage());
}
}
});
public class handleIsUserNumberFound(boolean isUserNumberFound){
//do whatever you need to with the value
}