2

我一直在尝试创建一个类来允许我将核心数据输出到 JSON。

我已经设法让它工作到一定程度,但是我似乎在输出关系上遇到了障碍

NSMutableArray * objectsArray = [[NSMutableArray alloc] init];

for (NSManagedObject * object in array) {
    if([NSJSONSerialization isValidJSONObject:object]) {
        [objectsArray addObject:object];
    } else {

    NSMutableDictionary *fields = [NSMutableDictionary dictionary];
    for (NSAttributeDescription *attribute in [[object entity] properties]) {
        NSString *attributeName = attribute.name;
        id attributeValue = [object valueForKey:attributeName];

        if([results length] > 0)
        {
            NSArray *chunks2 = [results componentsSeparatedByString: @","];
            for (NSString * string in chunks2) {
                if([string.lowercaseString isEqualToString:attributeName.lowercaseString])
                {
                    [fields setObject:[NSString stringWithFormat:@"%@",attributeValue] forKey:attributeName];
                    break;
                }
            }
        }
        else
        {
            if (attributeValue) {
                [fields setObject:[NSString stringWithFormat:@"%@",attributeValue] forKey:attributeName];
            }
        }
    }
    [objectsArray addObject:fields];
    }
}

NSError *error;
NSData * JSONData = [NSJSONSerialization dataWithJSONObject:objectsArray options:kNilOptions error:&error];

只要我没有关系,这就会很好地输出数据,例如一个 -> 很多或很多 -> 一个

它输出以下内容

{
"mySegmentation": "(null)",
"number": "9452062"
},
{
"mySegmentation": "<NSManagedObject: 0x212050b0> (entity: SegmentationCodes; id: 0x212090b0 <x-coredata://BEC52F5F-EA26-4CFF-BCCB-09DA163F465D/SegmentationCodes/p13> ; data: <fault>)",
"number": "9448502"
},

我怎样才能让它也缩进并输出关系中的信息?

我一直在为此挠头,希望能得到帮助

谢谢马特

4

1 回答 1

1

从文档中:

可以转换为 JSON 的对象必须具有以下属性:

  • 顶级对象是 NSArray 或 NSDictionary。
  • 所有对象都是 NSString、NSNumber、NSArray、NSDictionary 或 NSNull 的实例。
  • 所有字典键都是 NSString 的实例。
  • 数字不是 NaN 或无穷大。

所以,你要做的就是用字典、数组、字符串、数字、空值组成一个字典或数组。

通常 CoreData 中的关系没有排序,因此 NSSets,您必须从集合中生成一个 NSArray(因此存在 Apple 的一个很好的方法)并将其作为特定键的字典中的值。

然后运行- dataWithJSONObject:options:error:例如(如您之前所做的)并检索正确的 JSON。

不确定缩进是否正确。你必须检查一下。

就是这样,希望

于 2013-07-08T07:41:40.153 回答