iOS 上传json数据到服务器

NSLog

#ifndef __OPTIMIZE__
#define NSLog(FORMAT, ...) fprintf(stderr,"[%s]:文件名:%s-%s-%d-%s\n",__TIME__,[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String],__FUNCTION__, __LINE__, [[NSString stringWithFormat:FORMAT, ##__VA_ARGS__] UTF8String]);

#else
# define NSLog(...) {}
#endif
NSMutableDictionary *dict = @{}.mutableCopy;
    
    NSMutableArray *array = @[].mutableCopy;
    
    NSMutableDictionary *dicts = @{}.mutableCopy;
    
    [self.dataSource enumerateObjectsUsingBlock:^(YAKAccessoriesSearchListModel * obj, NSUInteger idx, BOOL * _Nonnull stop) {
        
        [dicts setObject:[NSString stringWithFormat:@"%d", obj.number] forKey:@"number"];
        [dicts setObject:obj.accessorieId forKey:@"productForRepairId"];
        
    }];
    
    [array addObject:dicts];
    
    [dict setValue:[UserInfoModel getUserInfo].user_id forKey:@"userId"];
    [dict setValue:self.model.consEventId forKey:@"consEventId"];
    [dict setObject:array forKey:@"quotedPriceItems"];
    
    //去掉空格转换成json
    NSError *error = nil;
    
    NSData *data = [NSJSONSerialization dataWithJSONObject:dict options:NSJSONWritingPrettyPrinted error:&error];
    
    NSString *jsonStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    
    NSMutableString *mutStr = [NSMutableString stringWithString:jsonStr];
    NSRange range = {0,jsonStr.length};
    //去除空格和换行
    [mutStr replaceOccurrencesOfString:@" " withString:@"" options:NSLiteralSearch range:range];
    NSRange range2 = {0,mutStr.length};
    [mutStr replaceOccurrencesOfString:@"\n" withString:@"" options:NSLiteralSearch range:range2];

    
    AFHTTPSessionManager *manager = [[AFHTTPSessionManager alloc] initWithBaseURL:[NSURL URLWithString:kWebServiceAddress]];
    
    
    AFHTTPRequestSerializer *requestSerializer = [AFHTTPRequestSerializer serializer];
    requestSerializer.timeoutInterval = 10;
    manager.requestSerializer = requestSerializer;
    manager.requestSerializer=[AFJSONRequestSerializer serializer];
    manager.responseSerializer = [AFJSONResponseSerializer serializer];
    manager.requestSerializer.stringEncoding = NSUTF8StringEncoding;
    //菊花状态
    [AFNetworkActivityIndicatorManager sharedManager].enabled = YES;

//    manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"application/json"];
    
//    [manager POST:@"/api/grabSingle/createQuotedPrice" parameters:mutStr progress:nil success:^(NSURLSessionDataTask * _Nonnull task, id  _Nullable responseObject) {
//        NSLog(@"1111");
//    } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) {
//        NSLog(@"error:%@",error);
//    }];
    
    //请求成功
    
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/api/grabSingle/createQuotedPrice", kWebServiceAddress]]];
    request.HTTPMethod = @"POST";
    [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
    NSString *postStr = [NSString stringWithFormat:@"%@",mutStr];
    
    [request setHTTPBody:[postStr dataUsingEncoding:NSUTF8StringEncoding]];
    
    NSURLSessionTask *task = [manager dataTaskWithRequest:request completionHandler:^(NSURLResponse * _Nonnull response, id  _Nullable responseObject, NSError * _Nullable error) {
         NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*)response;
#warning -- 报价成功后返回到哪一个页面
        if (httpResponse.statusCode == 200) {
            [SVProgressHUD showSuccessWithStatus:@"报价成功"];
            
            int index = (int)[[self.navigationController viewControllers] indexOfObject:self];
            if (index > 2) {
                [self.navigationController popToViewController:[self.navigationController.viewControllers objectAtIndex:(index - 3)] animated:YES];
            }
            
        }else{
            [SVProgressHUD showErrorWithStatus:@"报价失败请重新报价"];
        }
        
        NSLog(@" http response : %ld",(long)httpResponse.statusCode);
    }];
    
    [task resume];

你可能感兴趣的:(iOS 上传json数据到服务器)