JSONファイルからデータを読み取ってsqliteに保存しようとしています。「単純な」データを取得していますが、配列から 1 対多の関係アイテムを 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パーサーが機能しているように見えます...しかし、1対多のPlayerInfoをsqliteに取得する方法がわかりません。
私はシーズンを知っていますInfo.players = [obj objectForKey:@"players"]; 行が間違っています...ここで何をすべきかわかりません。
優しくしてください... 私は iOS 初心者です。