关于NSJSONReadingOptions参数的含义

简介: <span style="color:rgb(51,51,51); font-family:'Helvetica Neue',Helvetica,STheiti,微软雅黑,黑体,Arial,Tahoma,sans-serif,serif; font-size:14px; line-height:24px">  AFHTTPRequestOperation *operation = [[AF
  AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];  
    [operation start];  
      
    NSLog(@"request======%@",request);  
      
    [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject)  
     {  
           
//         NSJSONReadingMutableContainers = (1UL << 0),  
//         NSJSONReadingMutableLeaves = (1UL << 1),  
//         NSJSONReadingAllowFragments = (1UL << 2)  
 
         NSData *data=(NSData *)responseObject;  
         NSError *error=nil;  
         NSDictionary *dicData1=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error ];  
         NSDictionary *dicData2=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:&error ];  
         NSDictionary *dicData3=[NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:&error ];  
 
         NSLog(@"解析成功 ===1=%@===2==%@====3==%@",dicData1,dicData2,dicData3);  
      
     } failure:^(AFHTTPRequestOperation *operation, NSError *error)  
     {  
               NSLog(@"解析失败  ====%@",error);  
     }];  
 
 
代码输出没有多大区别,我的英文不太好,看苹果官方文档上说,  
似乎是 第一个给数组或字典,第二选项为 可变字符,第三项为 不属于数组、字典。接收。  
 
NSJSONReadingMutableContainers  
Specifies that arrays and dictionaries are created as mutable objects.    //  创建可变的数组或字典 接收  
 
NSJSONReadingMutableLeaves  
Specifies that leaf strings in the JSON object graph are created as instances of NSMutableString.   // 指定在JSON对象可变字符串被创建为NSMutableString的实例  
 
NSJSONReadingAllowFragments  
Specifies that the parser should allow top-level objects that are not an instance of NSArray or NSDictionary   //  指定解析器应该允许不属于的NSArray或NSDictionary中的实例顶层对象  
 
可是我测试的 每一项都用字典接收,系统也没有给我报错。难道这是给返回的data类型有关,如果返回的是字典或数组,就用第一项  
 
如有误,请指正。
目录
相关文章
|
2月前
Ceres库中参数理解
Ceres库中参数的理解,特别是仿函数中传参的含义,并提供了一个LeetCode问题的链接,该问题要求找出数组中和为目标值的两个数。
|
2月前
ISB、DSB和DMB的含义
ISB、DSB和DMB的含义
|
2月前
DSB和DMB后面的可选项的含义
DSB和DMB后面的可选项的含义
|
6月前
|
Python
参数定义中的星号(`*`)
参数定义中的星号(`*`)
71 1
|
API Python
一日一技:如何正确使用 re.sub 的第二个参数
一日一技:如何正确使用 re.sub 的第二个参数
92 0
this的含义及其用法
this:代表当前对象的引用(谁调用就代表谁) this关键字主要有三个应用: 1.访问成员:
167 0
|
测试技术 Android开发
怎么知道方法的参数有哪些类型呢?
怎么知道方法的参数有哪些类型呢?
214 0
不定长参数作用
不定长参数作用
117 0
self.doubleSpinBox.setGeometry(QtCore.QRect(20, 25, 101, 22))参数讲解
self.doubleSpinBox.setGeometry(QtCore.QRect(20, 25, 101, 22))参数讲解
320 0