0

PHP Web サービスを呼び出さなければならないアプリに取り組んでいます。私は言及されたすべてのパラメータを渡していますが、それでも応答は空の文字列を出力していません。

これらは、PHP Web サービスの次のパラメーターです。

method: POST 
parameters: {
title fname lname conNo pwd email city state country
}

応答の成功と失敗の条件は次のとおりです。

Respons:

    case a: On Sucessfull Registration

 {
    'userName' : 'fName', 'outhProvider' : 'normal', 'status' : 'success' 'userId' : 'userId',
    'title' : 'title', 'firstName' : 'fName', 'lastName' : 'lName', 'city' : 'city', 'contactNo' : 'conNo', 'state' : 'state',
    'country' : 'country'
    }


    case b: On Duplicate Registration 
{
    “status” : “Data already exist” }

    case c: On Data not sufficient
     {
        “status” : “No data supplied” }

私が使用したPostメソッドは次のとおりです:-

-(void)RegisterUser
{
    NSString *strnew=[[NSString alloc]init];
    strnew=@"buyer";

    SBJSON *json = [SBJSON new];
    json.humanReadable = YES;
    responseData = [[NSMutableData data] retain];


    NSString *service = @"http://www.ajatus.in/ajatus_templates/Templaton/wp-content/plugins/realestate/registrationJson.php";



    NSString *requestString = [NSString stringWithFormat:@"{\"title\":\"%@\",\"fName\":\"%@\",\"lName\":\"%@\",\"conNo\":\"%@\",\"pwd\":\"%@\",\"email\":\"%@\",\"city\":\"%@\",\"state\":\"%@\",\"country\":\"%@\"}",titlename.text,fname.text,lname.text,contactno.text,password.text,email.text,city.text,state.text,country.text];

    NSData *requestData = [NSData dataWithBytes: [requestString UTF8String] length: [requestString length]];

    NSString *urlLoc=@"";
    urlLoc = [urlLoc stringByAppendingString:service];

    NSLog(@"URL:- %@",urlLoc);


    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:
                                    [NSURL URLWithString: urlLoc]];
        NSString *postLength = [NSString stringWithFormat:@"%d", [requestData length]];
    [request setHTTPMethod: @"POST"];
    [request setValue:postLength forHTTPHeaderField:@"Content-Length"];
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    [request setHTTPBody: requestData];

    self.connection = [NSURLConnection connectionWithRequest:request delegate:self];

}
4

1 に答える 1

0

次のコード行のように、すべてのデータを取得するためにいくつかのキー値を使用する必要があります。

NSString* latestvalue = [[[json objectForKey:@"countries"] objectAtIndex:0] objectForKey:@"countryName"];
于 2013-02-14T05:30:40.467 に答える