我不明白这个错误。
如果有人能帮助我从这个无限的误解中弄清楚,你会让我睡得更好;)
我仔细阅读了文档,一切正常,直到我切换到 iOS 项目。
http://263DE3VI7PY5KE6O6R84RACYYEH5S5GF@192.168.1.112/prestashop/api/
从 iOS 端我得到了这个代码和错误:
NSString *requestString = [NSString stringWithFormat:@"http://%@@%@/prestashop/api/", self.session.key, @"192.168.1.112"];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:requestString]];
[request setHTTPMethod:@"GET"];
[NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *res, NSData *data, NSError *err){
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
NSLog(@"%@", err);
[self didReceiveData:data];
}];
这里的所有代码都很基础,可能太多了?我是否忘记了从 Web 服务获取数据的 1 个步骤?