Как загрузить массив на веб-сервис - PullRequest
0 голосов
/ 30 марта 2012

У меня есть некоторые сомнения относительно того, как загрузить что-то в WebService.

Я использовал это для получения информации от моего веб-сервиса:

    NSString * URLString = [NSString stringWithFormat:@"%@%@", kBaseHost, [NSString stringWithFormat:kWSProjectList, token]];
NSURL *url = [NSURL URLWithString:URLString];
NSURLRequest * request = [NSURLRequest requestWithURL:url];
[NSURLConnection sendSynchronousRequest:request inBackgroundWithCompletionHandler:^(NSURLResponse *response, NSData *data, NSError *error) {
    NSString *json = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];
    NSLog(@"%@", json);
    NSDictionary * _response = [json JSONValue];
    NSLog (@"%@", _response);
    NSNotification* notification = [NSNotification notificationWithName:kWSNotificationDidReceiveDataProjectList object:_response];
    [[NSNotificationCenter defaultCenter] postNotification:notification];
}];

Теперь я должен сделать обратное, я должен загрузить информацию в WebService, и я понятия не имею, как ... Кто-то может мне немного помочь?

1 Ответ

0 голосов
/ 30 марта 2012

Вы можете сделать это так, если вы используете JSON.Возможно, вы захотите добавить проверку ошибок, но это должно помочь вам начать.

-(void)sendArray {
NSArray *array = <your array here>
NSData *post = [NSJSONSerialization dataWithJSONObject:array options:NSJSONWritingPrettyPrinted error:nil];
NSString *postLength = [NSString stringWithFormat:@"%d", [post length]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:kServerPath]];
[request setHTTPMethod:@"POST"];
[request setValue:postLength forHTTPHeaderField:@"Content-Length"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:post];
[request setCachePolicy:NSURLRequestReloadIgnoringLocalCacheData];
[request setTimeoutInterval:5];
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[NSURLConnection sendAsynchronousRequest:request queue:queue completionHandler:^(NSURLResponse* theResponse, NSData* theData, NSError* error){
    //Do whatever with return data
}];

}

...