我在 ASIFormDataRequest 中有 setPostValue。像这样:
ASIFormDataRequest *request = [[ASIFormDataRequest alloc] initWithURL:[NSURL URLWithString:url]];
[request setPostValue:@"helmi" forKey:@"username"];
[request setPostValue:@"123" forKey:@"password"];
[request setPostValue:@"goods" forKey:@"purchase"];
NSLog(@"...");
我想在发送到服务器之前显示 Post Value 的 NSLog。原因是因为我在 post 值中有很多变量值,需要检查我是否输入正确。