我正在尝试从 JSON 文件中读取数据并将其存储到 sqlite 中。我正在获取“简单”数据,但我无法弄清楚如何将一对多关系项从我的数组中获取到 sqlite。
这是我的数据模型:
(对不起 - 他们不让我在这里做屏幕截图......所以这里是数据模型的描述:)
Entity: SeasonInfo
Attributes:
year
coach
wins
losses
ties
Relationship: players
Destination: PlayerInfo
Inverse seasonInfo
Entity: PlayerInfo
Attributes:
name
number
Relationship: seasonInfo
Destination: SeasonInfo
Inverse: players
这是我的 JSON:
[
{ "year": 2012, "wins": 8, "losses": 8, "ties": 0, "coach": "Garrett",
"players": [ { "name": "Tony Romo", "number": 9},
{ "name": "Dez Bryant", "number": 88} ],
},
{ "year": 2011, "wins": 8, "losses": 8, "ties": 0, "coach": "Garrett",
"players": [ { "name": "DeMarcu Ware", "number": 94},
{ "name": "Felix Jones ", "number": 28},
{ "name": "Miles Austin", "number": 19} ],
},
{ "year": 2010, "wins": 6, "losses": 10, "ties": 0, "coach": "Garrett/Phillips",
"players": [ { "name": "Sean Lee", "number": 50},
{ "name": "Jason Witten", "number": 82} ],
}
]
这是我的代码:
// Load JSON data into Array
NSError* err = nil;
NSString* dataPath = [[NSBundle mainBundle] pathForResource:@"CowboySeason" ofType:@"json"];
NSArray* cowboySeasonsArray = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:dataPath]
options:kNilOptions
error:&err];
NSLog(@"Imported Seasons: %@", cowboySeasonsArray);
// Export data from the array into the database
// Store the SeasonInfo
[cowboySeasonsArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
SeasonInfo *seasonInfo = [NSEntityDescription
insertNewObjectForEntityForName:@"SeasonInfo"
inManagedObjectContext:context];
seasonInfo.year = [obj objectForKey:@"year"];
seasonInfo.wins = [obj objectForKey:@"wins"];
seasonInfo.losses = [obj objectForKey:@"losses"];
seasonInfo.ties = [obj objectForKey:@"ties"];
seasonInfo.coach = [obj objectForKey:@"coach"];
seasonInfo.players = [obj objectForKey:@"players"];
NSError *error;
if (![context save:&error]) {
NSLog(@"Whoops, couldn't save: %@", [error localizedDescription]);
}
}];
cowboySeasonArray 在日志中如下所示:
2013-02-25 20:39:05.025 SeasonTestLoader[369:503] Imported Seasons: (
{
coach = Garrett;
losses = 8;
players = (
{
name = "Tony Romo";
number = 9;
},
{
name = "Dez Bryant";
number = 88;
}
);
ties = 0;
wins = 8;
year = 2012;
},
{
coach = Garrett;
losses = 8;
players = (
{
name = "DeMarcu Ware";
number = 94;
},
{
name = "Felix Jones ";
number = 28;
},
{
name = "Miles Austin";
number = 19;
}
);
ties = 0;
wins = 8;
year = 2011;
},
{
coach = "Garrett/Phillips";
losses = 10;
players = (
{
name = "Sean Lee";
number = 50;
},
{
name = "Jason Witten";
number = 82;
}
);
ties = 0;
wins = 6;
year = 2010;
}
)
所以看起来JSON解析器工作......但我不知道如何将一对多的PlayerInfo放入sqlite。
我知道 seasonInfo.players = [obj objectForKey:@"players"]; 线是错误的......只是不知道在这里做什么。
温柔点……我是 iOS 新手。