将具有关系的临时对象保存到 managedObjectContext 会导致错误 1550
Posted
技术标签:
【中文标题】将具有关系的临时对象保存到 managedObjectContext 会导致错误 1550【英文标题】:Saving temporary object with relationship into managedObjectContext results in error 1550 【发布时间】:2014-04-22 10:18:20 【问题描述】:我正在尝试关注How to Deal with Temporary NSManagedObject instances?上的信息。
对于我的数据模型,我有一个与 entity2 有很多关系的实体。
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Product" inManagedObjectContext:self.managedObjectContext];
NSEntityDescription *priceEntity = [NSEntityDescription entityForName:@"Price" inManagedObjectContext:self.managedObjectContext];
Product *product = [[Product alloc]initWithEntity:entity insertIntoManagedObjectContext:nil];
Price *price = [[Price alloc]initWithEntity:priceEntity insertIntoManagedObjectContext:nil];
product.name = @"some product";
price.name = @"some price";
NSError *error;
[product addPricesObject:price];
[self.managedObjectContext insertObject:product];
if(![self.managedObjectContext save:&error])
NSLog(@"%@",error.localizedDescription);
我从记录“操作无法完成。(Cocoa 错误 1550。)”的保存方法中得到一个错误
如果没有设置关系,代码似乎可以正常工作。在***页面中使用答案时是我的代码有问题还是关系有问题?
谢谢
【问题讨论】:
【参考方案1】:您已将product
添加到托管对象上下文,但未添加相关的price
。
您应该添加:
[self.managedObjectContext insertObject:price];
在保存上下文之前。
【讨论】:
【参考方案2】:我有同样的问题,我解决了。 试试这个:
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Product" inManagedObjectContext:self.managedObjectContext];
NSEntityDescription *priceEntity = [NSEntityDescription entityForName:@"Price" inManagedObjectContext:self.managedObjectContext];
Product *product = [[Product alloc]initWithEntity:entity insertIntoManagedObjectContext:nil];
Price *price = [[Price alloc]initWithEntity:priceEntity insertIntoManagedObjectContext:nil];
product.name = @"some product";
price.name = @"some price";
//first:insert to managedObjectContext (all managedObject!)
[self.managedObjectContext insertObject:product];
[self.managedObjectContext insertObject:price];
//second:add relationship
[product addPricesObject:price];
NSError *error;
if(![self.managedObjectContext save:&error])
NSLog(@"%@",error.localizedDescription);
【讨论】:
以上是关于将具有关系的临时对象保存到 managedObjectContext 会导致错误 1550的主要内容,如果未能解决你的问题,请参考以下文章