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