我AFJSONRequestOperation
用来请求服务器并解析返回的 JSON 响应,但是在解析时,我收到了这个错误:
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"}]}