0

我一直在尝试使用 JSONmodel 尝试将数据从我的服务器获取到我的 ios 设备。我已经正确设置了我的课程,但由于某种原因,它在调用 url 后一直返回 null。

feed = [[Feeds alloc] initFromURLWithString:@"http://http://www.cs4768project.net76.net/untitled.php?action=getShops"
                                         completion:^(JSONModel *model, JSONModelError *err) {
                                             NSLog(@"reached");
                                             //json fetched
                                             NSLog(@"shops: %@", feed.shops);

这是保存提要的模型

@interface Feeds : JSONModel
@property(strong,nonatomic) NSArray* shops;
@end

和我的咖啡店课一起

@interface CoffeeShop : JSONModel
@property(strong, nonatomic) NSString* name;
@property(nonatomic) CLLocationDegrees latitude;
@property(nonatomic) CLLocationDegrees longtitude;
@end

json输出:

{"name":"Starbs","latitude":"45","longtitude":"-52"}

我一直在尝试寻找解决方案,但一无所获,我很困惑为什么这不起作用。任何帮助都是极好的。

4

1 回答 1

1

好的,看起来 JSON 有问题,因为我尝试了这段代码

NSError *e;
NSDictionary *s = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://www.cs4768project.net76.net/untitled.php?action=getShops"]] options:NSJSONReadingMutableLeaves error:&e];
NSLog(@"%@", s);
if (e) {
    NSLog(@"%@", e);
}

它返回

Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)" (Garbage at end.) UserInfo=0x1e0529f0 {NSDebugDescription=Garbage at end.}

因此,如果是您的网站,我会将 JSON 更改为有效格式,或联系网站所有者并将问题通知他们。这个答案告诉你具体是什么问题。

于 2013-03-27T00:22:17.383 回答