DELETE 請求參數保存在Body 中

NSMutableDictionary *parameter = [NSMutableDictionary dictionary];
 
    NSString * url = [NSString stringWithFormat:signatureProxy,model2.scheduleId];
    NSMutableURLRequest * req = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]];
    req.HTTPMethod = @"DELETE";
    req.HTTPBody = [NSJSONSerialization dataWithJSONObject:parameter options:NSJSONWritingPrettyPrinted error:nil];//[parameter JSONData];//dic字典至關於parameters,請求體裏的東西
    req.allHTTPHeaderFields = @{
                                @"Content-Type":@"application/json"
                                };//請求頭裏的東西
    NSOperationQueue *queue = [[NSOperationQueue alloc] init];
    [NSURLConnection sendAsynchronousRequest:req queue:queue completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) {
        if (connectionError) {
            //失敗
            [ToolOfClass showMessage:@"操做失敗"];
        } else {
            //成功
            dispatch_async(dispatch_get_main_queue(), ^{
                //回調或者說是通知主線程刷新,
                [_tableView reloadData];
                [ToolOfClass showMessage:@"操做成功"];
           });
        }
    }];json

相關文章
相關標籤/搜索