Blog中有个添加Blog按钮 对应的是BlogController.java 中的add()方法,方法中没有方法体,它是怎么跳转的add页面呢?
我碰到一个项目用的咱们JFinal写的,路由中没有设置相同的名称,并且不是二级路由,就是单纯的/name 然后就找到对应的controller的方法了....这个能给解释一下么,先谢过大佬们
http://www.jfinal.com/doc/2-3
关于怎么跳转到 add 的问题:
当你的 action 中没有调用过任何 render、redirect、forwardAction 的时候,jfinal 会自动帮你调用一个 render(view), 规则是:
view = baseViewPath + viewPath + methodName + ".html";
上面变量的含义见文档:http://www.jfinal.com/doc/2-3