2017-12-18 11:24
@JFinal 从解答分析,波总你的意思是service和model层的注入也是可以直接controllerFactory这个工产类中统一实现Ioc注入。
2017-12-18 11:10
@JFinal 如果是model层和服务层用Ioc有类型controlerFactory这类的工产类不?或有什么更优质的方案,求教求教下。
2017-09-18 15:31
@JFinal action带形参,需要依赖jdk8 那如果是jdk9的话,其不是不能用?感觉麻烦的,受限于jdk版本
2017-06-28 12:19
@Dreamlu 关键是:
1、在不设定容器的前提下,要怎么样才能发起pjax请求;
2、在定容器的前提下,这个模板处理怎么用,因为pjax发起请求,是通过指定div为容器进行刷新的。
2017-06-28 09:49
@埃克斯 这也是奇怪了,分块写就校遍历不到。
2017-06-25 15:54
@Dreamlu 确实是没看懂,就这段说了下,
Server-side configuration
Ideally, your server should detect pjax requests by looking at the special X-PJAX HTTP header, and render only the HTML meant to replace the contents of the container element (#pjax-container in our example) without the rest of the page layout. Here is an example of how this might be done in Ruby on Rails:
def index
if request.headers['X-PJAX']
render :layout => false
end
end
在触发pjax如果不指定css#container容器后台判断是不无获取期指定的头部信息“X-PJAX“那么模块切换刷新就木起效果,还请高手指点下怎么使用^_^!!