我的代码调用HTTP
远程服务器的 post call 并获取JSON
格式的结果,我已经提取了这个 JSON,但现在我需要将这些结果存储到 SQLite。根据我的阅读NSURLSessionDataTask
是后台线程,所以我的困惑是,我应该调用 SQL 打开并在里面插入completionHandler
(或)是否有任何其他最佳实践来处理这种类型的要求?
编辑 1
我更苦恼的一点是,在“completionHandler”中编写 SQLite 操作是否有效?“completionHandler”是否将被视为单独线程(正在执行 SessionDataTask)或主线程上的方法?
编辑 2
我也对 CoreData 相关的解决方案持开放态度。
任何帮助,将不胜感激。
NSURL *loginUrl = [NSURL URLWithString:@"myurl"];
NSURLSession *session = [NSURLSession sharedSession];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:loginUrl];
request.HTTPMethod = @"POST";
NSString *ipData = [NSString stringWithFormat:@"uName=%@&pwd=%@",self.userName.text,self.userPwd.text];
request.HTTPBody = [ipData dataUsingEncoding:NSUTF8StringEncoding];
NSURLSessionDataTask *postDataTask = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *jsonError) {
NSLog(@"Inside post data task......");
NSHTTPURLResponse *httpResp = (NSHTTPURLResponse *)response;
if(httpResp.statusCode == 200)
{
NSLog(@"Response succesfull.........");
NSDictionary *jsonDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&jsonError];
if(!jsonError)
{
//No Json error
NSString *uName = jsonDict[@"userName"];
NSString *uID = jsonDict[@"uID"];
//HOW CAN I INSERT THESE DETAILS TO SQLITE DB BEFORE CALLING SEGUE TO MOVE TO NEXT SCREEN?
dispatch_async(dispatch_get_main_queue(), ^{
[self performSegueWithIdentifier:@"mysegueID" sender:self];
});
}
}else
{
NSLog(@"Response is not succesfulll...");
}
}];
[postDataTask resume];