菜鸟教程小白 发表于 2022-12-13 10:48:18

php - 制作网络服务后如何在IOS应用程序中获得有效的json回复


                                            <p><p>创建网络服务后,我的 JSON 响应如下</p>

<pre><code>$response[&#39;success&#39;]=1;
$response[&#39;message&#39;]=&#39;enter successfully&#39;;
die(json_encode($response));
</code></pre>

<p>但是当我在 iOS 应用程序中运行它时,会出现以下错误</p>

<blockquote>
<p>JSON text did not start with array or object and option to allow fragments not set</p>
</blockquote></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您的 json 响应无效。请检查您的 json 对象。</p></p>
                                   
                                                <p style="font-size: 20px;">关于php - 制作网络服务后如何在IOS应用程序中获得有效的json回复,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32524384/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32524384/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: php - 制作网络服务后如何在IOS应用程序中获得有效的json回复