我的代码如下:
public static void insertObjectIdInIinstallation(){
ParseInstallation installation =ParseInstallation.getCurrentInstallation();
installation.put(Constants.USER,ParseUser.getCurrentUser());
}
//cannot update the installation table object id
ParseInstallation installation =ParseInstallation.getCurrentInstallation();
installation.deleteInBackground(new DeleteCallback() {
@Override
public void done(ParseException e) {
if (e != null) {
Log.d("error", e.toString());
}
}
});
我想从解析表中删除记录。而且我也无法删除应用程序安装时插入的行。