博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用MKNetworkKit ios post请求
阅读量:5994 次
发布时间:2019-06-20

本文共 1520 字,大约阅读时间需要 5 分钟。

hot3.png

AppDelegate *appDelegate = [[UIApplicationsharedApplication] delegate];        MKNetworkEngine *engine = [[MKNetworkEnginealloc] initWithHostName:appDelegate.baseUrlcustomHeaderFields:nil];    NSMutableDictionary *dic = [[NSMutableDictionaryalloc] init];    [dic setValue:@"kendeji"forKey:@"user.userCode"];    [dic setValue:@"888888"forKey:@"user.password"];        MKNetworkOperation *op = [engine operationWithPath:@"/dianCaiLogin.action"params:dic httpMethod:@"POST"];    [op addCompletionHandler:^(MKNetworkOperation *operation) {        NSLog(@"[operation responseData]-->>%@", [operation responseString]);        NSError *error;        NSData * data = [[operation responseString] dataUsingEncoding:NSUTF8StringEncoding];        NSDictionary *dic = [NSJSONSerializationJSONObjectWithData:data options:NSJSONReadingMutableContainerserror:&error];                if(!dic ||error){            NSLog(@"解码失败!");                    }else{            BOOL isSuccess = [dic objectForKey:@"success"];            if(isSuccess){                UIAlertView * alert = [[UIAlertViewalloc] initWithTitle:@""message:@"登录成功!"delegate:selfcancelButtonTitle:@"好"otherButtonTitles:nil, nil];                [alert show];            }            NSLog(@"%@", [dic objectForKey:@"success"]);        }            }errorHandler:^(MKNetworkOperation *errorOp, NSError* err) {        NSLog(@"MKNetwork request error : %@", [err localizedDescription]);    }];    [engine enqueueOperation:op];

转载于:https://my.oschina.net/u/1011854/blog/400652

你可能感兴趣的文章
vue02
查看>>
topcoder srm 709 div1
查看>>
topcoder srm 685 div1
查看>>
flash Timer类使用
查看>>
博客目录
查看>>
SAP自带的创建报表工具
查看>>
无向图的 DFS 和 BFS实现 (以邻接表存储的图)
查看>>
Sharepoint2010 如何 对搜索结果做自定义标签
查看>>
iOS 判断NSString是否包含某个字符串
查看>>
iOS extern 和 #define 使用
查看>>
该对象尚未初始化。请确保在所有其他初始化代码后面的应用程序启动代码中调用 HttpConfiguration.EnsureInitialized()。...
查看>>
ios上表单默认样式
查看>>
ARC下需要注意的内存问题
查看>>
使用xcode workspace 多个project协同工作
查看>>
JS执行机制
查看>>
个人项目 Individual Project
查看>>
js 小数[非]四舍五入
查看>>
Oracle 中如何判断一个字符串是否为数字
查看>>
啸叫抑制(howling suppression)
查看>>
【论文:麦克风阵列增强】Signal Enhancement Using Beamforming and Nonstationarity with Applications to Speech...
查看>>