我使用post请求向服务器发送bool值和Integer值。请求参数
{
photo = "https://s3-ap-southeast-1.jpeg";
"photo_id" = 126383;
selected = 1;
}
这里“photo_id”是整数,“选中”是布尔值,但在后端都是字符串。任何人都可以帮我解决这个问题。以下是发布请求的代码
[self.networkManager startPOSTRequestWithAPI:aEditUserInfoAPI andParameters:self.paramsDict withSuccess:^(NSDictionary *responseDictionary) {
}
andFailure:^(NSString *errorMessage) {
}];
这里的self.networkManager是AFNetworking类的对象