JSON POST在iO中不起作用 [英] JSON POST is not working in iOs

查看:92
本文介绍了JSON POST在iO中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用JSON POST方法将一些数据发布到Web服务,我已经尝试了很多方法来实现此目的,但是没有一种工作.这是我的代码,请检查:

I am trying to post some data to the web service using JSON POST method, I have tried so many ways to do this, but none is working. Here is my code, please check:

    NSArray *objects=[NSArray arrayWithObjects:@"value1", @"value2",@"value3", @"value4",@"value5", @"value6",@"value7", @"value8",@"value9", nil] ;
    NSArray *keys=[NSArray arrayWithObjects:@"FirstName", @"LastName",@"UserName", @"Password",@"Email", @"Gender",@"DeviceId", @"DeviceName",@"ProfileImage", nil];

    NSData *_jsonData=nil;
    NSString *_jsonString=nil;
    NSURL *url=[NSURL URLWithString:urlstring];

    NSDictionary *JsonDictionary=[NSDictionary dictionaryWithObjects:objects forKeys:keys];

    if([NSJSONSerialization isValidJSONObject:JsonDictionary]){
        _jsonData=[NSJSONSerialization dataWithJSONObject:JsonDictionary options:0 error:nil];
        _jsonString=[[NSString alloc]initWithData:_jsonData encoding:NSUTF8StringEncoding];
    }

    NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"POST"];
//    [request setHTTPBody:_jsonData];
//    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
//    [request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
//    [request setValue:[NSString stringWithFormat:@"%d", [_jsonData length]] forHTTPHeaderField:@"Content-Length"];

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

    NSString *finalString = [_jsonString stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding];

    [request setHTTPBody:[finalString dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES]];

    //    //return and test
    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
    NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];

请检查.

推荐答案

以下是尝试注册用户的示例代码. 在注册"按钮中,单击,输入以下代码:

Here is a sample code am trying to register a user. In the 'Register' button click,write the following code:

  - (IBAction)registerButtonPressed:(id)sender
{
  BOOL valid = FALSE;
  valid=[self validateEntry];
  if(valid)
  {
    NSString *bytes = [NSString stringWithFormat:@"{\"UserName\":\"%@ %@\",\"Email\":\"%@\",\"UserType\":\"normaluser\",\"Password\":\"%@\"}",firstName,lastName,email,password];
    NSURL *url=[NSURL URLWithString:urlstring];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    [request setHTTPMethod:@"POST"];
    [request setValue:@"application/json; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
    [request setHTTPBody:[bytes dataUsingEncoding:NSUTF8StringEncoding]];        
    [self setUrlConnection:[NSURLConnection connectionWithRequest:request delegate:self]];
    [self setResponseData:[NSMutableData data]];
    [self.urlConnection start];
  }
}

然后添加以下作为连接委托方法:

Then add the following as Connection delegate methods:

   - (void) connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse   *)response
{
  [self.responseData setLength:0];
}

- (void) connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{    
  [self.responseData appendData:data];
}
- (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Network Status"
                                                message:@"Sorry,Network is not  available. Please try again later."
                                               delegate:self cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
   [alert show];

}
- (void) connectionDidFinishLoading:(NSURLConnection *)connection
{
  if (connection == self.urlConnection) 
  {
    [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;        
    NSError *error;        
    NSDictionary *jsonString=[NSJSONSerialization JSONObjectWithData:self.responseData options:kNilOptions error:&error];        
    if(jsonString != nil)
    {          
        if ([[[jsonString objectForKey:@"data"] objectForKey:@"id"] length])
        {
            [[NSUserDefaults standardUserDefaults] setValue:[[jsonString objectForKey:@"data"] objectForKey:@"id"] forKey:@"user_id"];
            [[NSUserDefaults standardUserDefaults] setValue:[[jsonString objectForKey:@"data"] objectForKey:@"UserName"] forKey:@"user_name"];                
            [[NSUserDefaults standardUserDefaults] synchronize];
            [delegate userRegistrationViewControllerResponse:self];
        }
        else
        {
            UIAlertView *alertView=[[UIAlertView alloc] initWithTitle:@"Info" message:[jsonString objectForKey:@"statusText"] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
            [alertView show];
        }
    }
    else
    {
        UIAlertView *alertView=[[UIAlertView alloc] initWithTitle:@"Server Busy" message:@"Register after sometime" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil, nil];
        [alertView show];
    }
  }
}

  • 这会将用户信息发布为JSON.
  • 这篇关于JSON POST在iO中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆