我试图更新PFInstallation对象中的字段。我的iOS代码是:
PFInstallation *installation = [PFInstallation currentInstallation];
installation[@"userId"] = @"none";
[installation saveEventually:^(BOOL suceeded, NSError *error){
if (suceeded) {
[PFUser logOutInBackgroundWithBlock:^(NSError *error){
if (!error) {
[self dismissViewControllerAnimated:YES completion:nil];
}
}];
}
else{
NSLog(@"Error Logging Out: %@", error);
}
}];
以前工作正常,但由于某些原因使用Parse Server,我收到以下错误:
[错误]:此操作中必须至少指定一个ID字段(deviceToken,installationId)(代码:135,版本:1.12.0)
任何人都知道如何解决这个问题?