• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 什么是 diff b/w 同步和异步请求,如何以编程方式检查此操作

[复制链接]
菜鸟教程小白 发表于 2022-12-13 12:14:16 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

嗨,我是 ios 的初学者,当我们使用 NSURLRequest 调用服务时,我想知道当我们使用“同步请求”调用服务并以编程方式使用异步请求调用服务时会发生什么, 请以编程方式解释操作,我在下面使用该代码编写了一些代码解释同步和异步操作

我的代码:-

- (void)viewDidLoad {
    [super viewDidLoad];

 NSURL *url = [NSURL URLWithString"http://api.kivaws.org/v1/loans/search.json?status=fundraising"];
        NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];

        [theRequest setHTTPMethod"GET"];
        [theRequest setValue"application/json" forHTTPHeaderField"Accept"];
        [theRequest setValue"application/json" forHTTPHeaderField"Content-Type"];
        [theRequest setTimeoutInterval:5];

        NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

        if(connection){

            webData = [[NSMutableData alloc] init];
        }
}

- (void)connectionNSURLConnection *)connection didReceiveResponseNSURLResponse *)response {

    [webData setLength:0];
}

- (void)connectionNSURLConnection *)connection didReceiveDataNSData *)data {

    [webData appendData:data];
}

- (void)connectionNSURLConnection *)connection didFailWithErrorNSError *)error {

    NSLog(@"error is %@",[error localizedDescription]);
}

- (void)connectionDidFinishLoadingNSURLConnection *)connection {

    NSString * allDataDictionbary = [[NSString alloc] initWithData:webData encoding:NSUTF8StringEncoding];

    NSArray * responseString = [allDataDictionbary JSONValue];

   NSLog(@"final respone dictionary%@",responseString);
   }



Best Answer-推荐答案


在回答您的问题时,同步请求会阻塞调用它们的线程,直到请求完成。 (因此,通常不鼓励同步请求。)异步请求让当前线程在执行请求时继续执行(例如,继续响应用户与应用程序的交互;响应系统事件等)。这通常是可取的。

您的代码正在执行异步请求(这很好)。不过也有一些问题:

  1. 你不应该再使用 NSURLConnection 了。它已被弃用。使用 NSURLSession。它实际上更简单,因为您通常不必编写那些委托(delegate)方法(除非您想要这样做,因为您有一些迫切需要这样做)。

    有关NSURLSession 的更多信息,请参阅Using NSURLSessionURL session 编程指南中。 或观看 WWDC 2013 视频 What's New in Foundation Networking一个很好的介绍。

  2. 你没有做一些错误处理。您正在检查基本错误(例如,没有网络),这非常好,但您没有考虑其他 Web 服务器错误,这些错误可能并不总是导致 NSError 对象,但可能只会导致200 以外的 HTTP 状态代码。我建议检查一下。

    参见 RFC 2616 的第 10 节获取 HTTP 状态代码列表。

  3. 您正在设置 application/jsonContent-Type。但这不是 JSON 请求。 (当然,响应是 JSON,但请求不是。)通常你会使用 application/x-www-form-urlencoded 来处理这样的请求。

  4. 在您的代码片段中,您建议来自服务器的响应是 JSON,其中 NSArray 作为顶级对象。但顶层对象是 NSDictionary

  5. 您正在使用 JSONValue。我不确定是哪个 JSON 库,但我们中的许多人只是使用内置的 NSJSONSerialization Apple 提供的类。很久以前,在 Apple 提供 NSJSONSerialization 之前,我们会使用第三方库来解析 JSON,但现在不再需要了。

NSURLSession发送请求的正确方式如下:

NSURL *url = [NSURL URLWithString"http://api.kivaws.org/v1/loans/search.json?status=fundraising"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

[request setHTTPMethod"GET"];
[request setValue"application/json" forHTTPHeaderField"Accept"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];

NSURLSessionTask *task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
    if (error != nil) {
        NSLog(@"fundamental network error = %@", error);
        return;
    }
    
    if ([response isKindOfClass:[NSHTTPURLResponse class]]) {
        NSInteger statusCode = [(NSHTTPURLResponse *)response statusCode];
        if (statusCode != 200) {
            NSLog(@"Warning; server should respond with 200 status code, but returned %ld", (long)statusCode);
        }
    }
    
    NSError *parseError;
    NSDictionary *responseObject = [NSJSONSerialization JSONObjectWithData:data options:0 error:&parseError];
    if (responseObject) {
        NSLog(@"responseObject = %@", responseObject);
    } else {
        NSLog(@"Error parsing JSON: %@", parseError);
        NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
        NSLog(@"responseString = %@", responseString);
    }
}];
[task resume];

// Note, you'll reach this portion of your code before the
// above `completionHandler` runs because this request runs
// asynchronously. So put code that uses the network response
// above, inside that `completionHandler`, not here.

关于ios - 什么是 diff b/w 同步和异步请求,如何以编程方式检查此操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34237161/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap