NSURLConnection:JSON文本不是以数组或对象开头,而是选项允许未设置片段

NIT*_*N S 21 xcode json objective-c nsurlconnection ios

我从NSURLConnection connectionDidFinishLoading收到以下错误

"操作无法完成.(Cocoa error 3840.)"(JSON文本没有以数组或对象开头,并且选项允许未设置片段.)UserInfo = 0x7b71dbb0 {NSDebugDescription = JSON文本没有以数组或对象开头以及允许未设置片段的选项.}

我使用了以下代码:

-(void)connectionDidFinishLoading:(NSURLConnection *)connection 
{
    NSError *error;
    id json = [NSJSONSerialization JSONObjectWithData:_urlData options:kNilOptions error:&error];

    if (error) {
        NSLog(@"Loading Error = %@",error);
    }
}
Run Code Online (Sandbox Code Playgroud)

以下是我的json回复:

{  
   "result":"success",
   "details":[  
      {  
         "id":"11531",
         "user_name":"",
         "fullname":"aa",
         "email_address":"aa",
         "user_type":"a",
         "server":"",
         "server_email":"",
         "server_password":"",
         "password":"0cc175b9c0f1b6a831c399e269772661",
         "clean_password":"a",
         "gender":"",
         "ceo_name":"",
         "ceo_picture":"",
         "ceo_contact":"",
         "ceo_contact_pic":"",
         "company_name":"a",
         "freight_company_name":"",
         "freight_company_email":"",
         "company_url":"11531",
         "company_keyword":"",
         "company_description":"",
         "address":"",
         "province":"",
         "postal_code":"",
         "phone_number":"",
         "fax_number":"",
         "website":"",
         "city":"",
         "b_category":"",
         "main_products":"",
         "cellphone":"a",
         "country":"0",
         "states":"",
         "company_status":"1",
         "joindate":"0",
         "varificationcode":"",
         "activation_status":"1",
         "new_email":"",
         "email_activation_status":"",
         "facebook_url":"",
         "twitter_url":"",
         "company_update_status":"0",
         "last_access_date":"0000-00-00",
         "ip_address":"",
         "ip_block":"0",
         "user_id":null,
         "company_id":null,
         "video_url":"",
         "oauth_uid":"",
         "oauth_provider":"",
         "get_color":"",
         "comp_name_size":"13",
         "member_type":"",
         "mark_status":"1",
         "ip_address_intension":"",
         "fbId":"",
         "twitterId":"",
         "profile_picture":"",
         "device_token":""
      }
   ]
}
Run Code Online (Sandbox Code Playgroud)

我已经尝试了stackOverflow中的所有解决方案,但仍然是静脉.

Jan*_*aya 26

设置选项值NSJSONReadingAllowFragments而不是kNilOptions 我已经测试了你的JSON将它带入本地文件

id json = [NSJSONSerialization JSONObjectWithData:contentOfLocalFile
                                                options:NSJSONReadingAllowFragments
                                                  error:&deserializingError];
Run Code Online (Sandbox Code Playgroud)

  • 试过这个,但它导致了一个更具体的错误:`(可可错误3840.)(字符0周围的值无效) (13认同)

gna*_*729 1

NSLog 记录您获取的实际数据,而不是字符串,并检查第一个字节。JSONSerializer 没有找到 { 或 [ 作为第一个字符,因此您可能有一些零字节、字节顺序标记或其他类似的不可见字符。