我正在为我的项目开发一个networkUtil,我需要一个获取url的方法,并使用NSURLSessionDataTask返回从该url接收的JSON以从服务器获取JSON。方法如下:
+ (NSDictionary*) getJsonDataFromURL:(NSString *)urlString{
__block NSDictionary* jsonResponse;
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"%@", jsonResponse);
}];
[dataTask resume];
return jsonResponse;
}
问题是我的方法中的 completionHandler 和方法本身在不同的线程上运行,在最后一行中jsonResponse是始终 nil
如何使用 urlString 返回的json设置 jsonResponse ?
此问题的最佳做法是什么?
答案 0 :(得分:3)
在NSURLSession中运行的块正在不同的线程上运行 - 您的方法不会等待块完成。
这里有两个选择
第一个。发送NSNotification
255
第二个。过去完成块到这个实用方法
+ (void) getJsonDataFromURL:(NSString *)urlString{
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
NSDictionary* jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"%@", jsonResponse);
[[NSNotificationCenter defaultCenter] postNotificationName:@"JSONResponse" object:nil userInfo:@{@"response" : jsonResponse}];
}];
[dataTask resume];
}
答案 1 :(得分:1)
有些人可能会说这是一个可怕的建议,但你也可以同步下载你的数据。它应该在后台队列中完成。它不是最佳实践,但在某些情况下(如命令行实用程序,非关键后台队列),这是可以的。
NSURLSession没有同步下载方法,但您可以使用信号量轻松绕过它:
+ (NSDictionary*) getJsonDataFromURL:(NSString *)urlString{
__block NSDictionary* jsonResponse;
dispatch_semaphore_t semaphore = dispatch_semaphore_create(0); // Line 1
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"%@", jsonResponse);
dispatch_semaphore_signal(semaphore); // Line 2
}];
[dataTask resume];
dispatch_semaphore_wait(semaphore, DISPATCH_TIME_FOREVER); // Line 3
return jsonResponse;
}
NSURLSession有一个delegateQueue属性,用于"委托方法调用和与会话相关的完成处理程序"。默认情况下,NSURLSession始终在初始化期间创建新的delegateQueue。但是,如果您自己设置NSURLSession的委派队列,请确保不要在同一个队列中调用您的方法,因为它会阻止它。
答案 2 :(得分:0)
显然,在Block完成之前,Method将返回。因为这是该块的主要目的。
你需要改变这样的事情:
NSDictionary* jsonResponse;
+ (NSDictionary*) getJsonDataFromURL:(NSString *)urlString{
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
self.jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"%@", jsonResponse);
[dataTask resume];
// ad observer here that call method to update your UI
}];
}
答案 3 :(得分:0)
这是“异步调用”的预期行为。它们不应该阻塞调用线程,而是在调用完成时执行传递的块。
只需添加在块中获得结果后必须执行的代码。
所以不是......
+ (NSDictionary*) getJsonDataFromURL:(NSString *)urlString
{
__block NSDictionary* jsonResponse;
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:
^(NSData *data, NSURLResponse *response, NSError *error)
{
jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"%@", jsonResponse);
}];
[dataTask resume];
return jsonResponse;
}
…
NSDictionary* jsonResponde = [self getJsonDataFromURL:url]; // BTW: get infringes the naming rules of Objective-C
// The code that has to be executed is here
...你这样做:
+ (void) getJsonDataFromURL:(NSString *)urlString
{
NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *dataTask = [session dataTaskWithURL:[NSURL URLWithString:urlString] completionHandler:
^(NSData *data, NSURLResponse *response, NSError *error)
{
NSDictionary *jsonResponse = [NSJSONSerialization JSONObjectWithData:data options:0 error:nil];
NSLog(@"%@", jsonResponse);
// Place the code to be executed here <-----
}];
[dataTask resume];
}
…
[self getJsonDataFromURL:url]; // BTW: get infringes the naming rules of Objective-C
// No code here any more
如果-getJsonDataFromURL:
执行的代码依赖于调用者,只需将其作为参数传递给方法并在指定位置执行。如果您需要帮助,请告诉我。我将为它添加代码。
另一个解决方案是使用信号量并等待,直到执行完成处理程序。但这会阻止用户界面,并且是无意的方式。