2

我在我的 Android 应用程序中使用 Parse.com。我正在制作一个协作购物清单,允许用户将项目标记为删除(它们变成灰色),但只有当我按下同步按钮时它们才会被实际删除(并且有可用的网络)。目前,对象已从解析数据库中删除,但未从本地数据存储中删除。我正在尝试这个:

 ParseQuery<ShoppingItem> queryDeletes = ShoppingItem.getQuery();
    queryDeletes.fromPin(MyApplication.ALL_ITEMS);
    queryDeletes.whereEqualTo("isDeleted", true);
    queryDeletes.findInBackground(new FindCallback<ShoppingItem>() {
        @Override
        public void done(final List<ShoppingItem> items, ParseException e) {
            if (e == null) {
                ShoppingItem.deleteAllInBackground(items, new DeleteCallback() {
                    @Override
                    public void done(ParseException e) {
                        if (e == null) {
                            ShoppingItem.unpinAllInBackground(items, new DeleteCallback() {
                                @Override
                                public void done(ParseException e) {
                                    if (e == null) {
                                        if (!isFinishing()) { 
                                           shoppingListAdapter.loadObjects(); // update the list view
                                        }
                                    }
                                }
                            });
                        }
                    }
                });
            }
        }
    });
}

已经尝试清除应用程序数据并在 ShoppingItem 中覆盖 equals(),但没有成功。有任何想法吗?

谢谢!

4

1 回答 1

2

好的,所以我解决了。据我了解,我试图做的事情是不可能使用解析库的。

首先,deleteAllInBackground()还取消固定对象,因此unpinAllInBackground()不需要。

问题是我正在使用 固定对象item.pin(MyApplication.ALL_ITEMS),因此取消固定它们的唯一方法是使用 传递引脚名称item.unpinInBackground(MyApplication.ALL_ITEMS)。但是,批处理版本不允许将项目集合和引脚名称作为参数传递。因此,无法使用命名 pin 批量取消固定项目。

我最终通过 pin 名称单独取消固定对象。我最大的抱怨是,item.unpinInBackground()没有引脚名称不会引发异常,因此我不知道问题出在哪里。

于 2015-03-26T17:02:23.500 回答