问题描述
解决方案
NSDictionary数据结构来处理json数据,把NSDictionary的数据转换为NSData等来传递
解决方案二:
AFNetWorking里面的POST请求可以传递出去 简单方便
解决方案三:
@weakify(self);
//需要传的参数
NSDictionary *dict = [NSDictionary dictionaryWithObject:self.device forKey:@""device""];
//发送请求并监听回调
[AFNRequest requestUrl:@""http://xxxxx/xxx/xxxxxxx"" parameter:dict success:^(id success) {
@strongify(self);
//请求成功进入
[self.tableView reloadData];
} failure:^(id failure) {
//请求错误进入
}];
时间: 2024-11-01 09:01:37