参数

作者: 王老板 | 来源:发表于2015-12-11 14:43 被阅读15次
-(void)getData{
    //    //cityId:城市ID
    //    //lat:纬度
    //    //lng:经度
    //showType
    //sendPrice
    //defaultOeder
    NSMutableDictionary *dic = [[NSMutableDictionary alloc] init];
    NSDictionary *userInfo = [[NSUserDefaults standardUserDefaults] objectForKey:@"UserInfo"];
    [dic setValue:userInfo[@"supermaketName"] forKey:@"supermaketName"];
    [dic setValue:userInfo[@"tasteCategory"] forKey:@"tasteCategory"];
    [dic setValue:@"0411" forKey:@"ctiyId"];
    [dic setValue:[NSNumber numberWithDouble:121.517977] forKey:@"lng"];
    [dic setValue:[NSNumber numberWithDouble:38.8496481] forKey:@"lat"];
    [dic setValue:userInfo[@"type"] forKey:@"type"];
    [dic setValue:@"1" forKey:@"showType"];
    [MBProgressHUD showHUDAddedTo:self.view animated:YES];// 提示用户正在请求
    [[SetRequest sharedInstance]postRequestWithURL:URL(searchSupermarketList)
    postParems:dic content:^(NetWorkModel *model){
        
        [MBProgressHUD hideAllHUDsForView:self.view animated:YES];
        if(model.error){
            
            NSLog(@"获取列表失败");
        }else{
            
            if ([model.responseDic[@"error_code"] intValue] == 0) {
                
                
                _dataSource = model.responseDic[@"restaurantList"];
                
                [_tableView reloadData];
                
            }
        }
    }];
}
  • 有参数 有URL
  • 参数是
    //cityId:城市ID
    //lat:纬度
    //lng:经度
    //showType
    //sendPrice
    //defaultOeder
  • 打印model.responseDic为
dishesList =     (
                {
            classificationId = 10001;
            classificationName = "进口食品";
            dishName = "蒙牛纯牛奶1L";
            dishesState = 0;
            id = 1011611107;
            isPackages = 0;
            measureUnit = 9;
            name = "蒙牛纯牛奶1L";
            practiceSortId = 0;
            price = 8;
            recommendFlag = 0;
            smallImgPath = "http://dalianmohekeji.eicp.net:8102/repastmanage/upload/2015/08/19/16/50/20/small1916502378468.jpg";
            tasteSortId = 0;
            total = 0;
            vipPrice = 8;
  };
}
  • URL 是利用拼接的方法

  • 一个宏拼接另一个宏

  • 把所有的数据放到字典里

  • dic = model.responseDic[@"UserInfo"];

  • 在页面中显示就取dic里面的值

 _TextFieldOne.text = _dic[@"clUserName"];
 _TextFieldTwo.text = _dic[@"telephone"];
 _TextFieldThree.text = _dic[@"address"];

相关文章

  • 参数,非参数,半参数

    非参数与参数理解 non-parametric model中参数是distribution free的,参数函数空...

  • 参数、非参数、半参数

    如何理解参数、非参数和半参数的概念?先回顾一下医学统计学参数检验和非参数检验的内容:参数检验(parametric...

  • 函数的参数

    函数的参数顺序是 必选参数、默认参数、可变参数、关键字参数、命名关键字参数 必选参数 默认参数 可变参数 关键...

  • 函数 参数

    关键字参数: 形如 kwarg = value 参数类型: 必备参数 命名参数 缺省参数 不定长参数 必备参数 ...

  • 3.monkey参数

    参数分类 常规类参数 事件类参数 约束类参数 调试类参数 常规类参数 常规类参数包括帮助参数和日志信息参数。帮助参...

  • Python之函数的参数

    Python中函数的参数有五种:位置参数(必选参数)、默认参数、可变参数、关键字参数、命名关键字参数。 位置参数 ...

  • 方法的参数 Day0815

    值参数 引用参数 输入参数 数组参数

  • 5.函数的参数

    位置参数 默认参数 可变参数 关键字参数 命名关键字参数 参数组合

  • JavaScript 箭头函数语法结构

    基本语法 (参数1, 参数2, …, 参数N) => { 函数声明 }//相当于:(参数1, 参数2, …, 参数...

  • Python 函数

    调用函数 定义函数 函数的参数必选参数、默认参数、可变参数、关键字参数、命名关键字参数 位置参数 默认参数 可变参...

网友评论

      本文标题:参数

      本文链接:https://www.haomeiwen.com/subject/qduyhttx.html