ios - 从核心数据创建 JSON
<p><p>如何从 Core Data 实体及其 1:m 子实体中创建带有 <code>NSJSONSerialization</code> 的 <code>JSON</code> 对象?</p>
<p>当尝试在将 fetch 请求转换为 <code>JSON</code> 之前将其输出到 <code>NSDictionary</code> 时,我得到一个扁平的 <code>NSDictionary</code> 没有任何关系或我的将 <code>propertiesToFetch</code> 设置为关系时应用崩溃。</p>
<p>这是我的代码:</p>
<pre><code>NSFetchRequest *request = [NSFetchRequest
fetchRequestWithEntityName:@"ContrSector"];
request.resultType = NSDictionaryResultType;
request.propertiesToFetch = @[@"industries"];
NSError *error;
NSArray *result = [self.managedObjectContext
executeFetchRequest:request error:&error];
</code></pre>
<p>这样做的正确方法是什么?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p><code>propertiesToFetch</code> 需要 <code>NSPropertyDescription</code> 的实例,因此请尝试将 @"industries"替换为:</p>
<pre><code>NSDictionary *attributes = [ relationshipsByName];
NSAttributeDescription *industriesRelationship = ;
request.propertiesToFetch = @;
</code></pre>
<p>编辑:我没有意识到这是一个多对多的关系,来自文档:</p>
<blockquote>
<p>The property descriptions may represent attributes, to-one
relationships, or expressions. The name of an attribute or
relationship description must match the name of a description on the
fetch request’s entity.</p>
</blockquote></p>
<p style="font-size: 20px;">关于ios - 从核心数据创建 JSON,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17451543/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17451543/
</a>
</p>
页:
[1]