JFinal 3.5 controller的形参怎么使用?

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

2018-10-12 16:18

参考文档来做:
http://www.jfinal.com/doc/3-3

简单代码

2018-10-15 16:17

@JFinal 谢谢,是我漏配置了1.8的保留参数了

热门反馈

扫码入社