JFinal中的Controller读取参数

1.使用getPara

(1)使用关键字取得

形式:/method?key1=value1&key2=value2……

取得方式:getPara("key")

(2)使用下标取得

形式:/method/v0-v1-v2……

取得方式:getPara(int i)       //取得vi

2.使用getModel

直接上图