我一直在关注一个教程(http://www.raywenderlich.com/5492/working-with-json-in-ios-5),我得到了处理json Web服务的代码(这是我的网络服务:http://bit.ly/Y5430d)
所以,我已经将我的网址更改为我的网络服务,并将对象标记改为代表我的(我还没有改变任何其他变量)。然而,没有格式化的json没有通过。
我的网络服务有问题吗?
#define kBgQueue dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0) //1
#define kLatestKivaLoansURL [NSURL URLWithString: @"http://www.bushell.info/getResults.php"] //2
#import "ViewController.h"
@interface NSDictionary(JSONCategories)
+(NSDictionary*)dictionaryWithContentsOfJSONURLString:(NSString*)urlAddress;
-(NSData*)toJSON;
@end
@implementation NSDictionary(JSONCategories)
+(NSDictionary*)dictionaryWithContentsOfJSONURLString:(NSString*)urlAddress
{
NSData* data = [NSData dataWithContentsOfURL: [NSURL URLWithString: urlAddress] ];
__autoreleasing NSError* error = nil;
id result = [NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
if (error != nil) return nil;
return result;
}
-(NSData*)toJSON
{
NSError* error = nil;
id result = [NSJSONSerialization dataWithJSONObject:self options:kNilOptions error:&error];
if (error != nil) return nil;
return result;
}
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
dispatch_async(kBgQueue, ^{
NSData* data = [NSData dataWithContentsOfURL: kLatestKivaLoansURL];
[self performSelectorOnMainThread:@selector(fetchedData:) withObject:data waitUntilDone:YES];
});
}
- (void)fetchedData:(NSData *)responseData {
//parse out the json data
NSError* error;
NSDictionary* json = [NSJSONSerialization JSONObjectWithData:responseData //1
options:kNilOptions
error:&error];
NSArray* latestLoans = [json objectForKey:@"Latest lotto"]; //2
NSLog(@"Latest lotto: %@", latestLoans); //3
// 1) Get the latest loan
NSDictionary* loan = [latestLoans objectAtIndex:0];
// 2) Get the funded amount and loan amount
NSNumber* fundedAmount = [loan objectForKey:@"funded_amount"];
NSNumber* loanAmount = [loan objectForKey:@"loan_amount"];
float outstandingAmount = [loanAmount floatValue] - [fundedAmount floatValue];
// 3) Set the label appropriately
humanReadble.text = [NSString stringWithFormat:@"Latest loan: %@ from %@ needs another $%.2f to pursue their entrepreneural dream",
[loan objectForKey:@"name"],
[(NSDictionary*)[loan objectForKey:@"location"] objectForKey:@"country"],
outstandingAmount
];
//build an info object and convert to json
NSDictionary* info = [NSDictionary dictionaryWithObjectsAndKeys:
[loan objectForKey:@"name"], @"who",
[(NSDictionary*)[loan objectForKey:@"location"] objectForKey:@"country"], @"where",
[NSNumber numberWithFloat: outstandingAmount], @"what",
nil];
//convert object to data
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:info
options:NSJSONWritingPrettyPrinted
error:&error];
//print out the data contents
jsonSummary.text = [[NSString alloc] initWithData:jsonData
encoding:NSUTF8StringEncoding];
}
@end
答案 0 :(得分:0)
我的网络服务有问题吗?
简单的方法是使用您应用以外的其他方式访问它。命令行程序curl
是检查Web服务调用结果的绝佳工具。甚至Safari也可以在这里提供帮助,特别是如果您启用了Web检查器(Preferences-> Advanced-> Show Develop菜单栏中的菜单栏)。实际上,任何可以让你看到查询结果的东西都应该有用。
检查服务的另一种方法是使用像Charles这样的Web代理工具。您可以将设备设置为使用Charles作为HTTP代理,然后Charles将能够向您显示应用和服务器之间的所有流量。