我如何处理与节点ID相对应的响应对象?

时间:2014-02-24 02:32:06

标签: objective-c web-services nsmutabledictionary jsonkit drupal-services

编辑措辞..

我正在使用名为Drupal-IOS-SDk的第三方库将我的Drupal网站与我正在开发的IOS应用程序连接起来。我使用一种方法来索引我网站上的节点,我只是想知道是否有人知道如何处理来自我网站的响应。如果我运行类似的代码到我的索引方法(一个getNode方法),它可以很好地访问我的响应,如下所示:

    //code for correctly working nodeGet method

NSMutableDictionary *nodeData = [NSMutableDictionary new];

[nodeData setValue:@"650" forKey:@"nid"];
[DIOSNode nodeGet:nodeData success:^(AFHTTPRequestOperation *operation, id responseObject) {

    //print out responseObject
    //NSLog(@"%@", responseObject);

    //pull data from the responseObject
    NSInteger testNumber = [responseObject objectForKey:@"changed"];
    NSLog(@"%ld", (long)testNumber);


} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    //we failed, uh-oh lets error log this.
    NSLog(@"%@,  %@", [error localizedDescription], [operation responseString]);
 }];

这是由响应对象打印的内容(我没有包含整个内容但你明白了):

    //printed statement for correctly working nodeGet method

{
changed = 1390534644;

comment = 0;

created = 1390534644;

data = "b:0;";

"ds_switch" = "";

"field_additional_pictures" =     (
);
"field_author" =     {
    und =

上面的代码获取节点数据并在responseObject上调用“objectforkey”方法让我访问数字或我的responseObject中存储的任何其他内容。在我从响应对象中注释拉取数据的地方,我得到了整数“1390534644”,它正确对应于“已更改”变量,正如您从上面的打印响应中看到的那样。上面的部分工作正常。这是我感到困惑的下一步:

//code for index method that is in question

NSMutableDictionary *paramsDictionary = [NSMutableDictionary new];
[paramsDictionary setValue:@"books_e_books_other_books" forKey:@"type"];
[DIOSNode nodeIndexWithPage:@"0" fields:@"nid" parameters:paramsDictionary pageSize:@"20"
                    success:^(AFHTTPRequestOperation *operation, id responseObject) {
                        //print response object
                        NSLog(@"%@", responseObject);
                        NSLog(@"GREAT SUCCESS");

                        //HERE IS MY PROBLEM!!!
                        //what do I do with response object?

                    }
                    failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                        //code
                        NSLog(@"Oh no failed when trying to get the index");
                        NSLog(@"%@,  %@", [error localizedDescription], [operation responseString]);
                    }];

在本节中,我索引所有节点并从每个节点获取字段,而不是仅从一个节点获取所有信息。到目前为止,我得到了一个响应,显示事情正常,因为响应具有正确的信息。我很困惑,因为我不确定我的回复对象究竟是什么。它是一个节点集合,每个节点都有一个“nid”和“uri”,如下面的索引方法responseObject所示。如果我想从下面打印区域的第一个“nid”获得值“650”,我将如何进行此操作?我不认为我可以像第一个工作示例中那样调用“objectForKey”,因为每个节点都有一个“nid”。如果我告诉我的应用程序要查找名为nid的密钥,它就不知道要查找哪个密钥。没有唯一的密钥,我如何访问650号码?我在下面打印了索引方法responseObject,这样你就可以看到我在说什么了。

//printed statement from index method, this is what i am confused about, there are no unique keys how do I access the value 650 or the first nid

 {

    nid = 650;

    uri = "http://www.domain.com/domain_endpoint/node/650";
},

    {

    nid = 649;

    uri = "http://www.domain.com/domain_endpoint/node/649";
},

    {

    nid = 647;

    uri = "http://www.domain.com/domain_endpoint/node/647";
},

1 个答案:

答案 0 :(得分:2)

自从您提出这个问题以来已经过了几个月,所以我不确定您是否还在寻找答案,但以防将来有人需要答案。

responseObject是NSDictionary对象的数组。您可以像数组一样访问responseObject项,并根据您需要的数据执行您需要的任何操作。

例如:

NSArray *responseArray = responseObject;

for (NSDictionary *item in responseArray)

{
    // Do something with your item here
    // For example:
    NSString *uriStr = [item valueForKey:@"uri"]; 
}