菜鸟教程小白 发表于 2022-12-12 12:35:08

ios - FirebaseUI-iOS FUIIndexArray 用法


                                            <p><p>由于目前 FirebaseUI 的 <code>FUICollectionDataSource</code> 处理 UI 的所有更改,我使用 <code>FUIArray</code> 并观察数据源的更改以及手动更新我的 collectionView。然而,乍一看,我相信我应该实现 <code>FUIIndexArray</code>,因为它的排序行为。但是,我不确定它是两个初始化查询。</p>

<blockquote>
<p>From the docs:</p>

<ul>
<li>@param index A Firebase database query whose childrens&#39; keys are all children of the data query.</li>
<li>@param dataA Firebase database reference whose children will be fetched and used to populate the array&#39;s contents according to the
index query.</li>
</ul>
</blockquote>

<p>对于数据参数,我使用的查询与 <code>FUIArray</code> 使用的查询相同(有效)。对于索引参数,我不确定要使用什么,所以我使用相同的查询进行测试,它似乎工作了一半。在这两个查询中,我都按优先级排序。如果我检查 <code>FUIIndexArray</code> 的长度,我会得到正确的计数,但是当我检查它的 <code>.items</code> 时,数组是空的。 </p>

<p><code>FUIIndexArray</code> 是否应该类似于 <code>FUIArray</code>,除了它也返回一个索引?索引查询应该是什么样的?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>看起来对于 <code>FUIIndexArray</code> 实际应该做什么有一些混淆。 <code>FUIIndexArray</code> 使用索引查询的子项的键从数据查询中加载子项,这意味着每个元素的加载都是异步的,如果没有,<code>.items</code> 将不会返回任何内容这些加载中的一部分已经完成(尽管它可能应该在此处返回一个充满 <code>NSNull</code> 的数组)。</p>

<p><code>FUIIIndexArray</code> 旨在通过查询以准确指定应加载哪些元素,从而使加载大型数据集的非常精细的部分变得更加容易。假设您的数据库如下所示:</p>

<pre><code>// An index to track Ada&#39;s memberships
{
&#34;users&#34;: {
    &#34;alovelace&#34;: {
      &#34;name&#34;: &#34;Ada Lovelace&#34;,
      // Index Ada&#39;s groups in her profile
      &#34;groups&#34;: {
         // the value here doesn&#39;t matter, just that the key exists
         &#34;techpioneers&#34;: true,
         &#34;womentechmakers&#34;: true
      }
    },
    ...
},
&#34;groups&#34;: {
    &#34;techpioneers&#34;: {
      &#34;name&#34;: &#34;Historical Tech Pioneers&#34;,
      &#34;members&#34;: {
      &#34;alovelace&#34;: true,
      &#34;ghopper&#34;: true,
      &#34;eclarke&#34;: true
      }
    },
    ...
}
}
</code></pre>

<p>如果 <code>users</code> 和 <code>groups</code> 都是非常大的数据集,您将希望能够仅下载特定用户所属的组。 <code>FUIIndexArray</code> 正好解决了这个用例(仅此而已)。</p>

<pre><code>let adasGroups = database.reference(withPath: &#34;users/alovelace/groups&#34;)
let allGroups= database.reference(withPath: &#34;groups&#34;)

// array will load only alovelace&#39;s groups
let array = FUIIndexArray(index: adasGroups, data: allGroups, delegate:self)
</code></pre>

<p>由于每个元素都必须单独加载,<code>FUIIndexArrayDelegate</code> 提供了一个回调来单独处理每个加载,并且实现这个回调来正确处理成功的加载和错误可以增加你的代码库的分形复杂性。您应该尽可能避免使用 FUIIndexArray 并坚持使用更简单的 FUIArray,尤其是如果您的查询限制需求可以在没有索引的情况下满足。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - FirebaseUI-iOS FUIIndexArray 用法,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/41222937/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/41222937/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - FirebaseUI-iOS FUIIndexArray 用法