4

RESTサービス(WCF)にAFNetworkingを使用しています。コードは次のとおりです。

  NSDictionary *userName = [NSDictionary dictionaryWithObject:@"user" forKey:@"UserNameOrEmail"];
  NSDictionary *pass = [NSDictionary dictionaryWithObject:@"123" forKey:@"Password"];
  NSArray *credentials = [NSArray arrayWithObjects:userName,pass,nil];
  NSDictionary *params = [NSDictionary dictionaryWithObject:credentials forKey:@"request"];


  AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:
  [NSURL URLWithString:@"http://server"]];

  [client postPath:@"/ProfileWebService.svc/login" parameters:params success:^(AFHTTPRequestOperation *operation, id responseObject) {
    NSString *text = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
    NSLog(@"Response: %@", text);
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
    NSLog(@"%@", [error localizedDescription]);
}];

しかし、400HTTPエラーが発生します。

HTMLとAJAXを使用すると、次のようになります。

        $(document).ready(function () {

            $("#login_call").click(function () {
                $.ajax({
                    type: 'POST',
                    url: 'http://server/ProfileWebService.svc/login',
                    contentType : 'application/json',
                    dataType: 'json',
                    data: JSON.stringify({request: {UserNameOrEmail: $('#login_username').val(), Password: $('#login_password').val()}}),
                    success: function (data) {
                        $('#login_result').val('Code: ' + data.LoginResult.Code + '\nFault String: ' + data.LoginResult.FaultString);
                    }
                });
            });

        });

正常に動作します。

パラメータの何が問題になっていますか。

4

1 に答える 1

3

Stackoverflowで調査および検索するより詳細なAFNetworkingドキュメントは、私に解決策を与えまし

1.リクエストのパラメータは次のようになります。

  NSDictionary *params =
        [NSDictionary dictionaryWithObjectsAndKeys:
           [NSDictionary dictionaryWithObjectsAndKeys:
                           username.text, @"UserNameOrEmail",
                           password.text, @"Password",
                           nil],
        @"request",
        nil];

2.AFHTTPClientの作成

  AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:
        [NSURL URLWithString:@"http://server"]];

3.パラメータとしてJSONを送信するときに、次を追加する必要があります。

  client.parameterEncoding = AFJSONParameterEncoding;

これを行った後、404エラーを取り除きましたが、JSON応答では何も作成できませんでした。理由はわかりません。しかし、解決策は次のとおりです。

4.リクエストの作成:

  NSMutableURLRequest *request = 
  [client requestWithMethod:@"POST" path:@"/ProfileWebService.svc/login" parameters:params];

5.操作の作成:

  AFJSONRequestOperation *operation =
  [AFJSONRequestOperation JSONRequestOperationWithRequest:request
  success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON)
  {
     NSLog(@"JSON: %@", [JSON valueForKeyPath:@"LoginResult"]);
     NSLog(@"Code: %@", [[[JSON valueForKeyPath:@"LoginResult"] valueForKeyPath:@"Code"] stringValue]);
     NSLog(@"FaultString: %@", [[JSON valueForKeyPath:@"LoginResult"] valueForKeyPath:@"FaultString"]);
  }
  failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON)
  {
     NSLog(@"error opening connection");
  }];

6.操作を開始します。

  [operation start];

AFNetworkingの初心者の中には、この投稿がお役に立てば幸いです。

于 2012-11-08T07:33:25.707 に答える