简体   繁体   中英

Parse.com modifying an object in local database

I have an android application using parse.com. In offline mode I use

Item item = new Item();
item.saveEventually() 

Item extends ParseObject to create the object in the local store.

Still in offline mode I can query all the item records and the offline created records show up. Now I want to delete one of the records created offline. Is there a way to do it? As far as I can see that the record does not have any objectId at all.

Thanks

您可以使用item.deleteEventually()在本地以及在建立网络后在parse.com上删除该项目。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM