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

ios - 从 NSMutableDictonary 中添加特定键的值(使用 NSPredicate)


                                            <p><p>我有以下 JSON 响应,它已存储在 <code>NSMutableDictonary</code> 中。我想添加 <strong>special_item</strong> 的所有 <strong>price</strong>。</p>

<pre><code>{
    &#34;order_id&#34;: &#34;1&#34;,
    &#34;order_name&#34;: &#34;xyz&#34;,
    &#34;order_item&#34;: [
      {
            &#34;item_id&#34;: &#34;1&#34;,
            &#34;item_name&#34;: &#34;myone&#34;,
            &#34;special_item&#34;: [
                {
                  &#34;s_item_id&#34;: &#34;1&#34;,
                  &#34;price&#34;: &#34;10&#34;
                },
                {
                  &#34;s_item_id&#34;: &#34;2&#34;,
                  &#34;price&#34;: &#34;100&#34;
                }
            ]
      },
      {
            &#34;item_id&#34;: &#34;2&#34;,
            &#34;item_name&#34;: &#34;mytwo&#34;,
            &#34;special_item&#34;: [
                {
                  &#34;s_item_id&#34;: &#34;11&#34;,
                  &#34;price&#34;: &#34;15&#34;
                },
                {
                  &#34;s_item_id&#34;: &#34;22&#34;,
                  &#34;price&#34;: &#34;110&#34;
                }
            ]
      }
    ]
}
</code></pre>

<p>是否可以使用 <code>NSPredicate</code> 添加所有 <strong>price</strong> ?或如何使用 <code>NSPredicate</code> 获取所有 <strong>price</strong> 值的数组?(例如:[@10,@100,@15,@110])<br/> < br/>
谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>就是这么简单</p>

<p>你可以试试下面的代码</p>

<pre><code>NSArray *arr = ;
long total = 0;
for (id price in arr) {
    if (]) {
      total += [ longValue];
    }
    else {
      total += ;
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 从 NSMutableDictonary 中添加特定键的值(使用 NSPredicate),我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/31043172/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/31043172/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 从 NSMutableDictonary 中添加特定键的值(使用 NSPredicate)