JFinal框架的参数获取

http://localhost:8008/admin/mymain?mobile=13369656658

获取?后面的电话号码: String mobile = getPara("mobile");

http://localhost:8008/admin/mymain/0021

获取/后面的字符串 String mobile = getPara(0);

想要获取到的类型为int : int number = getParaToInt(0); 第一种方法同样获取

http://localhost:8008/admin/mymain/0021-2201-3302

JFinal框架的参数分割符为 " - " 想要获取到指定的参数只需将下标对应 (从0开始)

数字为负数的表示方法 N8 = -8 n8=-8 用字母"n"表示了负数


你可能感兴趣的:(JFinal框架的参数获取)