JFinal 3.5 controller新增了形参功能,但是不知道该怎么使用,我在HTML中增加了
<form action="/testParam" method="POST"> code is <input type="text" name="code" value=""/> <input type="submit"> </form>
后台
public void testParam(String code) { renderText(code); }
后台并不能访问到code,直接报错了(空引用)。
而文档的例子形参还可以使用model,到底如何使用呢?
public void index(String userName, String password) { Ret ret = service.login(userName, password); renderJson(ret); } public class ProjectController extends Controller { public void index(Project project) { project.save(); render("index.html"); } }
项目:JFinal
http://www.jfinal.com/doc/3-3