我使用AFNetworking进行REST服务(WCF)。这是代码:
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]);
}];
但我得到400 HTTP错误。
使用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);
}
});
});
});
并且工作正常。
参数有什么问题。
答案 0 :(得分:3)
更详细的AFNetworking文档研究和搜索Stackoverflow给了我一个解决方案:
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初学者发现这篇文章很有帮助。