0

我正在解析服务器响应标头中所需的链接。我的标题看起来像

Access-Control-Allow-Origin → * Age → 0 Cache-Control → private,must-revalidate

连接→保持活动

内容编码 → gzip 内容类型 → 应用程序/json

日期 → 2015 年 6 月 13 日星期六 15:58:56 GMT ETag → W/"cb38bb07f1635fd6aba5969985bf0607"

链接 → http://thisIsCurrentlink&limit=24 ; rel="next", http://thisIsLastlink&limit=24 ; rel="last", http://thisIsFirstlink&limit=24;相对=“第一”,<>;相对=“上一个”

服务器 → nginx

变化 → 接受编码

X-总计数 → 131

传输编码→分块

通过这样做,我可以获得links包含所有链接的数组

NSString *linkHeader = [(NSHTTPURLResponse *)operation.response  allHeaderFields][@"Link"];
NSArray *links = [linkHeader componentsSeparatedByString:@","];

然后我正在执行以下操作以获取我需要的所有链接

RACSequence *sequence = [links.rac_sequence map:^id(NSString* item) {
                NSError *error;
                NSLog(@"item is %@",item);

                NSRegularExpression *regex  =   [NSRegularExpression regularExpressionWithPattern:@"<(.*)>" options:0 error:&error];
                NSString *actualLink;

                if (regex != nil) {
                    NSTextCheckingResult *result    =   [regex firstMatchInString:item
                                                                          options:0
                                                                            range:NSMakeRange(0, item.length)
                                                         ];
                    if (result) {
                        NSRange range    =   [result rangeAtIndex:1];
                        actualLink       =   [item substringWithRange:range];
                        NSLog(@"actualLink is %@",actualLink);

                        return [RACSequence return:actualLink];

                    }
                }
                return [RACSequence empty];

            }];

现在sequence包含所有链接

http://thisIsCurrentlink&limit=24
http://thisIsLastlink&limit=24
http://thisIsFirsttlink&limit=24

我的问题是如何从上面访问每个项目sequence

4

1 回答 1

3

只需使用array将 RACSequence 转换为数组的方法。

此外,您不需要使用RACSequence return:,即在您的序列中创建序列,只需返回通常的字符串和 nil,然后在尝试将其提取为数组之前使用 afilter之后删除所有 nil 值。map

例子:

NSArray *actualLinks = [[links.rac_sequence map:^id(NSString* item) {
            NSError *error = nil;
            NSLog(@"item is %@",item);

            NSRegularExpression *regex  =
            [NSRegularExpression regularExpressionWithPattern:@"<(.*)>" options:0 error:&error];
            NSString *actualLink = nil;

            if (regex != nil) {
                NSTextCheckingResult *result = [regex firstMatchInString:item
                                                                        options:0
                                                                        range:NSMakeRange(0, item.length)];
                if (result) {
                    NSRange range = [result rangeAtIndex:1];
                    actualLink = [item substringWithRange:range];
                    NSLog(@"actualLink is %@",actualLink);
                }
            }
            return actualLink;
        }] ignore:nil].array;
于 2015-06-13T23:04:50.423 回答