我正在開發一個應用程序,因爲我曾經通過WebServices將我的聯繫號碼發送到服務器。在這裏我得到了我的聯繫人號碼數組,並且通過webservices發送了聯繫人數組。代碼,在Webservices上傳遞數組
NSString *myRequestString1 = [[NSString alloc] initWithFormat:@"contact_numbers=%@",MobiileArray ];
NSData *myRequestData = [ NSData dataWithBytes: [ myRequestString1 UTF8String ] length: [ myRequestString1 length ] ];
NSMutableURLRequest *request = [ [ NSMutableURLRequest alloc ] initWithURL: [ NSURL URLWithString:@"http://myproject.in/myproject-contacts.php"]];
[request setHTTPMethod: @"POST"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"content-type"];
[request setHTTPBody: myRequestData];
NSURLResponse *response;
NSError *err;
NSData *returnData = [NSURLConnection sendSynchronousRequest: request returningResponse:&response error:&err];
NSError* error;
NSMutableArray* result = [NSJSONSerialization JSONObjectWithData:returnData
options:kNilOptions
error:&error];
NSLog(@"result: %@", result);
但響應爲空,我的代碼上的任何錯誤?你能否給我建議謝謝。
什麼錯誤你會得到嗎? –
錯誤結果:null –
這可能聽起來很愚蠢,但你確定你的問題在客戶端?也許你的web服務沒有返回你所期望的。 –