我的网站结构如下:
index.php
其中包含router.php
和router.php
次来电controller
。
例如,如果我调用像http://example.com/index.php?list
router
会调用list controller
。 list controller
包括header, pagination, search_form, list_items,footer views
每次我点击分页列表中的页码时,都会重新加载完整的页面
将加载index.php
和l ist_controller
中的所有启动。
但现在我想改变这个过程。我只需要在点击页码时重新加载list_items
视图。
现在问题是,如果我直接调用index
,则list_controller
和list_item view
中完成的变量,常量和类启动都会丢失。
我不想更改网站的完整结构。有没有办法让所有变量,常量和对象可用于这样的ajax请求?与coldfusion一样,如果请求页面,我们有可能在请求实际运行之前初始化请求变量。
答案 0 :(得分:0)
检查bootstrap文件和codeigniter的配置