菜鸟教程小白 发表于 2022-12-13 07:28:18

ios - 添加与关系名称不同的键路径的 Restkit 关系映射


                                            <p><p>我正在尝试将关系映射添加到我的一个请求映射中。</p>

<p>POST 请求应该这样发送正文内容:</p>

<blockquote>
<p>{&#34;account&#34;:{&#34;key&#34;:&#34;the_key_goes_here&#34;,&#34;terms_of_service&#34;:1,&#34;person_attributes&#34;:{&#34;email&#34;:&#34;[email protected]&#34;}}}</p>
</blockquote>

<p>我已将帐户映射设置为:</p>

<pre><code>NSMutableDictionary *accountAttributes = ;
RKObjectMapping *requestMapping = ;
;
</code></pre>

<p>现在,为了尝试将 person_attributes 添加到请求中,我执行以下操作:</p>

<pre><code>NSMutableDictionary *userAttributes = ;
RKObjectMapping *userMapping = ;
;
;
</code></pre>

<p>但是,这总是发送为:</p>

<blockquote>
<p>{&#34;account&#34;:{&#34;key&#34;:&#34;the_key_goes_here&#34;,&#34;terms_of_service&#34;:1,&#34;person&#34;:{&#34;email&#34;:&#34;[email protected]&#34;}}}</p>
</blockquote>

<p>为了尝试将 <em>person</em> 更改为 <em>person_attributes</em>,我将 relationshipmappingwithsourcekeypath 修改为:</p>

<pre><code>;
</code></pre>

<p>但是,它每次都失败并出现错误,说明:<code>实体帐户不符合键“person_attributes”的键值编码</code></p>

<p>我知道这是因为 <code>Account</code> 没有 <code>person_attributes</code> 值。有没有办法将 key 路径添加为 <code>person</code> 但将其作为 <code>person_attributes</code> 发送?</p>

<p>提前感谢您的帮助!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要使用 <code>RKRelationshipMapping</code> 类和 <code>relationshipMappingFromKeyPath:toKeyPath:withMapping:</code> 方法创建关系,然后使用 <code>addPropertyMapping:</code>.</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 添加与关系名称不同的键路径的 Restkit 关系映射,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23090808/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23090808/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 添加与关系名称不同的键路径的 Restkit 关系映射