ios - 添加与关系名称不同的键路径的 Restkit 关系映射
<p><p>我正在尝试将关系映射添加到我的一个请求映射中。</p>
<p>POST 请求应该这样发送正文内容:</p>
<blockquote>
<p>{"account":{"key":"the_key_goes_here","terms_of_service":1,"person_attributes":{"email":"[email protected]"}}}</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>{"account":{"key":"the_key_goes_here","terms_of_service":1,"person":{"email":"[email protected]"}}}</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]