菜鸟教程小白 发表于 2022-12-13 04:12:55

iOS RestKit 人工识别属性


                                            <p><p>已链接 <a href="https://github.com/RestKit/RestKit/issues/1604" rel="noreferrer noopener nofollow">RestKit issue #1604</a> </p>

<p>如果我的 API 没有给我 <code>id</code> 属性,但我仍然想通过 Core Data 缓存对象,我应该使用什么来识别我的对象。
例如我有</p>

<pre><code>response ={
translation =   {
          text = &#34;longlongtext&#34;;
          dictionary = &#34;general&#34;;
          lang = &#34;en&#34;;
      };
otherdata =   {
          author = &#34;May&#34;;
          date = &#34;434134&#34;;
      };
}
</code></pre>

<p>所以我很乐意使用散列 (md5) 翻译文本作为 id 字符串。
请注意,我 future 在没有网络连接的情况下发生的请求应该能够识别这个缓存的实体并将其作为结果。</p>

<p>我无法声明映射以填充 <code></code> 中的 <code>responseID</code> 属性以用作 <code>responseMapping.identificationAttributes = @[ responseID ];</code> 因为映射没有这样的功能。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>@segiddins 在 github 问题讨论中提出:</p>

<blockquote>
<p>... in your managed object subclass, hook into one of the core data callbacks to generate a compound key that is saved as part of the model and just use that key as your identification attribute.</p>
</blockquote>

<p>方法可能如下所示:</p>

<pre><code>@property (nonatomic, copy) NSString *identifier;


- (void)willSave
{
    ;

    NSString *computedIdentifier = [ md5hash];
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iOS RestKit 人工识别属性,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/18874384/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/18874384/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS RestKit 人工识别属性