當我用AFNetworking
來發布參數是NSMutableDictionary
時,這個請求成功了。在NSURLSession中HTTPBody必須是NSData?
但是當我使用NSURLSession
時,self.request!.HTTPBody必須是NSData,所以請求失敗。
如何使用NSURLSession使請求成功?
postDict[@"jgId"] = "1000000000";
[manager GET:SELECTDEPART parameters:postDict success:^(AFHTTPRequestOperation *operation, id responseObject) {
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(@"-----%@", error);
}];
//use NSData
NSJSONSerialization.dataWithJSONObject(postDict, options: NSJSONWritingOptions.PrettyPrinted)
請幫幫我。
你需要給答案目標C不迅速,因爲OP正與的OBJ C. –