菜鸟教程小白 发表于 2022-12-12 12:06:15

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:@&#34;ContrSector&#34;];
request.resultType = NSDictionaryResultType;
request.propertiesToFetch = @[@&#34;industries&#34;];
NSError *error;
NSArray *result = [self.managedObjectContext
    executeFetchRequest:request error:&amp;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]
查看完整版本: ios - 从核心数据创建 JSON