我正在尝试使用AFNetworking向服务器发送POST请求,一切似乎都在工作,即应用程序成功ping服务器。但是,当它到达服务器时,它发送的参数值是空白的,即使在使用调试器单步执行下面的代码之后,值似乎正在成功传递。对此的任何帮助将不胜感激。
APIClient.m
#import "APIClient.h"
#import "AFJSONRequestOperation.h"
// Removed URL for privacy purposes.
static NSString * const kAPIBaseURLString = @"string goes here";
@implementation APIClient
+ (APIClient *)sharedClient {
static APIClient *_sharedClient;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
_sharedClient = [[APIClient alloc] initWithBaseURL:[NSURL URLWithString:kAPIBaseURLString]];
});
return _sharedClient;
}
- (id)initWithBaseURL:(NSURL *)url {
self = [super initWithBaseURL:url];
if (self) {
[self registerHTTPOperationClass:[AFJSONRequestOperation class]];
// Accept HTTP Header; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1
[self setDefaultHeader:@"Accept" value:@"application/json"];
}
return self;
}
@end
LoginBrain.m中的登录方法
- (void)loginUsingEmail:(NSString *)email andPassword:(NSString *)password withBlock:(void (^)(NSDictionary *loginResults))block {
self.email = email;
self.password = password;
// Removed path for privacy purposes
[[APIClient sharedClient] postPath:@"insert path here" parameters:[NSDictionary dictionaryWithObjectsAndKeys:email, @"uname", password, @"pw", nil] success:^(AFHTTPRequestOperation *operation, id responseJSON) {
if (block) {
block(responseJSON);
}
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error: %@", error);
if (block) {
block(nil);
}
}];
// Store user data in app?
}
在LoginViewController.m中登录被调用的方法
- (IBAction)loginPressed {
[self.loginProgressIndicator startAnimating];
NSString *email = self.emailTextField.text;
NSString *password = self.passwordTextField.text;
[self.brain loginUsingEmail:email andPassword:password withBlock:^(NSDictionary *loginResults) {
[self.loginProgressIndicator stopAnimating];
[self.delegate uloopLoginViewController:self didLoginUserWithEmail:email andPassword:password];
}];
}
更新
我尝试按照建议的here更改parameterEncoding
,但它没有解决问题。
第二次更新
以下是服务器端访问POST数据的PHP代码。这是由我的同事写的,因为我在服务器端没有做任何事情,而且我对它的工作原理非常不熟悉。
header('Content-type: application/json');
$username = $_POST['uname'];
$pw = $_POST['pw'];
服务器代码非常简单。他有一些日志脚本可以检查变量值是什么,他说客户端正在访问服务器,但变量值是空白的。
第三次更新
这是通过生成print_r
变量的$_REQUEST
转储HTTP请求:
Array ( [sid] => FwAqvZrfckw )
这是$_POST
变量的转储。如你所见,它完全是空白的:
Array ( )
第四次更新
我使用Wireshark在数据包发送到服务器之前捕获数据包,一切看起来都是有序的:
Accept: application/json
Content-Type: application/x-www-form-urlencoded; charset=utf-8
POST
参数也都存在。我们还在服务器端创建了一个测试文件,只是进行了测试POST
以确保其中的代码正常工作,而且确实如此。
答案 0 :(得分:6)
谢谢。
出现同样的问题,我需要使用AFFormURLParameterEncoding。
所以只是为了简化所有线程,你必须使用:
[[APIClient sharedClient] setParameterEncoding:AFFormURLParameterEncoding];
答案 1 :(得分:0)
我没有看到任何特别会引起问题的事情,但我会先给你解决类似问题的步骤。
首先,检查工具Charles,它是一个调试Web代理,它将拦截来自服务器的响应,并且应该让你更清楚地知道出了什么问题。这是一个30天的免费试用版,它确实帮助我挑选了一些小错误。要使用它,请按序列按钮并通过服务器URL过滤结果。从那里,您可以看到从服务器发送和接收的请求和响应。如果以下内容无法解决您的问题,请发布Charles吐出的请求和响应。
修复方法,在发送POST请求之前尝试添加[[APIClient sharedClient] setParameterEncoding:AFJSONParameterEncoding]
。看起来yall使用JSON作为服务器端格式。
所以在loginUsingEmail:
self.email = email;
self.password = password;
[[APIClient sharedClient] setParameterEncoding:AFJSONParameterEncoding];
[[APIClient sharedClient] postPath:@"insert path here" parameters:[NSDictionary dictionaryWithObjectsAndKeys:email, @"uname", password, @"pw", nil] success:^(AFHTTPRequestOperation *operation, id responseJSON) {
if (block) {
block(responseJSON);
}
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"Error: %@", error);
if (block) {
block(nil);
}
}];
// Store user data in app?
}