5

我正在尝试使用 Restkit 来调用我的 Web 服务器 api,但事情不正常。我的控制器只显示活动指示器,没有任何反应。

我有一个 api 调用,它假设返回前 50 个视频,例如: http ://example.com/services/getTop50Video

返回的格式为:

<results>
<mysql_host>72.9.41.97</mysql_host>
<results>        
    <title/>
    <views/>
    <video_id>j2xFxHgENt4</video_id>
    <thumbnail>http://img.youtube.com/vi/j2xFxHgENt4/2.jpg</thumbnail>
    <url/>
</results>
...
</results>

我的应用委托代码

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

    // Configure RestKit Object Manager
    RKObjectManager* objectManager = [RKObjectManager objectManagerWithBaseURL:@"http://example.com/services"];

    RKObjectMapper* mapper =  objectManager.mapper;
    [mapper registerClass:[YouTubeVideo class] forElementNamed:@"video"];

     // Other non relevant stuff
}

TWYouTube视频类

@implementation TWYouTubeVideo

@synthesize title = _title;
@synthesize numberOfViews = _numberOfViews;
@synthesize videoID = _videoID;
@synthesize thumbnailURL = _thumbnailURL;


+ (NSDictionary*)elementToPropertyMappings {
    return [NSDictionary dictionaryWithKeysAndObjects:
            @"title", @"title",
            @"views", @"numberOfViews",
            @"video_id", @"videoID",
            @"thumbnail", @"thumbnailURL",
            nil];
}

我的控制器代码

-(id) initWithResourcePath:(NSString*) requestedResourcePath
{
    if (self = [super init])
    {
        self.resourcePath = requestedResourcePath;
    }
    return self;
}

- (void)createModel {
    self.model = [[[RKRequestTTModel alloc] initWithResourcePath:self.resourcePath] autorelease];
}


- (void)didLoadModel:(BOOL)firstTime {
    [super didLoadModel:firstTime];

    RKRequestTTModel* model = (RKRequestTTModel*)self.model;
    NSMutableArray* items = [NSMutableArray arrayWithCapacity:[model.objects count]];

        for (YouTubeVideo* video in model.objects) {
            TableSubtitleItem *item = [TableSubtitleItem itemWithText:video.title
                                                                 subtitle:[NSString stringWithFormat:@"%@ views", video.numberOfViews]
                                                                 imageURL:video.thumbnailURL
                                                             defaultImage:[YouTubeVideo defaultThumbnail]
                                                                      URL:nil
                                                             accessoryURL:nil];

            [items addObject:item];
        }


    // Ensure that the datasource's model is still the RKRequestTTModel;
    // Otherwise isOutdated will not work.
    TTListDataSource* dataSource = [TTListDataSource dataSourceWithItems:items];
    dataSource.model = model;
    self.dataSource = dataSource;
}

并推动控制器

SecondYouTubeController* viewController = [[SecondYouTubeController alloc] initWithResourcePath:@"/getTop50VideoXML?json=true"];
[self.navigationController pushViewController:viewController animated:YES];
[viewController release];    

首先,我想我需要以某种方式告诉解析器视频对象出现在“响应”节点内。其次,我不确定我是否按照应有的方式进行所有通话。

我真的很感谢这里的帮助。

4

2 回答 2

2

您可以通过将 RKRequestTTModel 上的 keyPath 属性设置为“responses”来深入了解“responses”元素。

您的响应实际上是 XML 吗?目前 RestKit 不支持 XML 有效负载(它正在重新开始工作的路线图上)。你能得到一个 JSON 有效载荷吗?如果没有,并且您想打一场好仗,您需要做的就是实现 RKParser 协议,该协议可以将 XML 转换为可可对象(字典和数组)或从可可对象(字典和数组)转换。

于 2011-02-10T16:45:09.073 回答
0

我发现这个问题是为了让 XML 与 RestKit 0.20 一起工作。

在上面的答案时这是不可能的 - 现在是通过一个额外的模块: https ://github.com/RestKit/RKXMLReaderSerialization

您可以通过将其添加到您的 Podfile 来使用它:

pod 'RKXMLReaderSerialization', :git => 'https://github.com/RestKit/RKXMLReaderSerialization.git', :branch => 'master'

并注册它以供使用:

[RKMIMETypeSerialization registerClass:[RKXMLReaderSerialization class] forMIMEType:@"application/xml"];
于 2013-07-08T17:35:14.773 回答