NSDebugDescription = “JSON 文本未以数组或对象开头,并允许未设置片段的选项。
2022-08-30 17:54:57
我正在使用请求服务器并解析返回的JSON响应,但在解析时,我得到了这个错误:AFJSONRequestOperation
NSDebugDescription = "JSON text did not start with array or object and option to allow fragments not set.";
我检查了API,它返回了JSON数据:
header('Content-type: text/json');
$arr[] = array("Message" => "update succeeded");
echo '{"Result":'.json_encode($arr).'}';
任何想法如何解决这个问题?
编辑
我尝试从浏览器调用API并将请求包含在URL中,因此我得到了有效的JSON响应:
{"Result":[{"Message":"update succeeded"}]}