菜鸟教程小白 发表于 2022-12-13 11:56:59

iphone - 使用 json-framework 提取 iphone 应用程序


                                            <p><p>当我尝试从该 json 字符串中提取值:<code>18 total</code>:</p>

<pre><code>{&#34;items&#34;:
    [[&#34;3 lost&#34;],
   [&#34;18 total&#34;]
    ],
&#34;id&#34;: &#34;26&#34;,
&#34;service&#34;: &#34;bizi&#34;,
&#34;title&#34;: &#34;my title&#34;}
</code></pre>

<p>我得到的是:<code>("18 total")</code></p>

<p>我正在使用 <code>[ objectAtIndex:1];</code></p>

<p>我的错在哪里?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的 JSON 代码正在返回该对象的另一个数组(包含在“[]”中)</p>

<p>试试:</p>

<pre><code>[[ objectAtIndex:1] objectAtIndex:0];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 使用 json-framework 提取 iphone 应用程序,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9520958/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9520958/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 使用 json-framework 提取 iphone 应用程序