比如我的代码:
AFHTTPRequestOperationManager *AFmanager = [AFHTTPRequestOperationManager manager];
NSMutableDictionary *postDic = [self.userModel apiUserInfoDic];
[postDic setValue:[NSString JSONStringWithNSDictionary:self.orderModel.cartCids] forKey:@"cids"];
NSLog(@"%@", postDic);
NSDictionary *argsDic = [Core apiArgsFormat:postDic];
[AFmanager POST:[NSString stringWithFormat:@"%@/order/cart/preview", API_ROOT_URL] parameters:argsDic success:^(AFHTTPRequestOperation *operation, id responseObject) {
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
}];
postDic的数据结构如下;
2015-09-14 19:38:48.324[21743:4090197] {
cids = "[\n \"33\",\n \"34\",\n \"36\",\n \"35\"\n]";
machineId = "FAA19978-47B5-4086-8EF5-CFAA92FD59B4";
platform = iOS;
uid = 2;
}
我的本意是想让cids发送一个数组结构给后台,但是这样没法送到,不知道如何写呢?
题主,如果你要传数组,那就一定要把你的数组转化成为JSONString再传。
你不能直接传cids,而是要传这个arrStr:NSString *arrStr = [cidsJSONString],然后再试试,就可以了。