我使用Parse.com作为我的后端,虽然似乎有一种方法saveInBackgroundWithBlock,以防止重复输入。它似乎在Android上不存在。我只想上传唯一的条目,但找不到解决方法。

我唯一想到的就是如果条目不存在,则查询然后插入,但这是网络调用的两倍,我觉得需要这样做。

谢谢

最佳答案

正如我在前面的评论中提到的那样,我也遇到过同样的问题。最终编写了一个查询以查找现有对象,然后仅保存不存在的对象。像下面一样。

//假设您有一个ParseObjects列表。此列表包含现有对象和新对象。

List<ParseObject> allObjects = new ArrayList<ParseObject>();
allObjects.add(object); //this contains the entire list of objects.

您想通过使用字段id找出现有的ID。
//First, form a query
ParseQuery<ParseObject> query = ParseQuery.getQuery("Class");
query.whereContainedIn("ids", allIds); //allIds is the list of ids

List<ParseObject> Objects = query.find();  //get the list of the parseobjects..findInBackground(Callback) whichever is suitable

for (int i = 0; i < Objects.size(); i++)
      existingIds.add(Objects.get(i).getString("ids"));

List<String> idsNotPresent = new ArrayList<String>(allIds);
idsNotPresent.removeAll(existingIds);

//Use a list of Array objects to store the non-existing objects
List<ParseObject> newObjects = new ArrayList<ParseObject>();

for (int i = 0; i < selectedFriends.size(); i++) {
     if (idsNotPresent.contains(allObjects.get(i).getString(
                        "ids"))) {
     newObjects.add(allObjects.get(i)); //new Objects will contain the list of only the ParseObjects which are new and are not existing.
    }
}

//Then use saveAllInBackground to store this objects

ParseObject.saveAllInBackground(newObjects, new SaveCallback() {

    @Override
    public void done(ParseException e) {
    // TODO Auto-generated method stub
    //do something
        }
    });

我也尝试过在beforeSave上使用ParseCloud方法。您可能知道,在保存对象之前,此方法在ParseCloud上调用,非常适合进行所需的验证。但是,它运行得不太好。让我知道您是否需要ParseCloud代码。

希望这可以帮助!

10-05 18:55