在 CodeIgniter 中处理动态内容(最佳实践)

Posted

技术标签:

【中文标题】在 CodeIgniter 中处理动态内容(最佳实践)【英文标题】:Handling Dynamic Content in CodeIgniter (Best Practice) 【发布时间】:2012-09-10 14:39:03 【问题描述】:

我正在使用 CodeIgniter 创建一个网站,并且有一个关于最佳实践的问题。

我通常将我的网页分成模块化的块。页眉、内容、页脚(以及其他一些根据需要散布在中间的东西。

“页眉”和“页脚”块通常是静态的,而中间的内容可能会根据一些变量(例如实际页面 - 主页、关于、联系方式等)而改变

下面是页面的控制器。 header_view、navigation_view 和 footer_view(很可能)永远不会改变。 home_main_view 会。

public function index()

    $this->load->view('header_view');
    $this->load->view('navigation_view');
    $this->load->view('home_main_view');
    $this->load->view('footer_view');


例如,如果用户导航到 about 页面,则视图可能如下所示:

public function index()

    $this->load->view('header_view');
    $this->load->view('navigation_view');
    $this->load->view('about_view');
    $this->load->view('footer_view');


我将如何处理 CI 中的这种变化?最好将 home_main_view 设为变量并将其传递给 index() 函数吗?我以前做过这个(用户单击一个链接,该链接触发控制器中的一个函数,该函数设置 $var 调用 index($var) 调用 view($var)。

【问题讨论】:

【参考方案1】:

我最喜欢的方法是使用我用来加载其他组件的布局(它只是一个视图)。显然,您拥有的每种页面类型都需要一个布局,但使用布局可以让以后的更改变得容易。

我更进一步,在我的自定义控制器MY_Controller 中创建了一个用于加载布局的方法:

<?php
class MY_Controller extends CI_Controller
    /**
     * Global $data variable holder
     * @var stdClass
     */
    protected $data;
    /**
     * The templates path, used by the 'render' method to determine the template to load
     * This is the 'root' of the templates folder for a specific section
     * Must NOT contain a trailing slash!
     * @var string
     */
    protected $templates_path = 'site';
    /**
     * The layout used by the 'render' method to load the specified view
     * @var string
     */
    protected $layout = 'default';
    /**
     * Class initialisation
     */
    function __construct() 
        parent::__construct();
        /*init the $data variable*/
        $this->data = new stdClass();
        /*the base url shortcut - to be used where needed*/
        $this->data->base_url = $this->config->item('base_url');
        /*page encoding header*/
        $this->output->set_header('Content-Type: text/html; charset=utf-8');
    
    /**
     * Helper method that will load a view using the layout configured
     * @param type $view
     */
    protected function render($view = FALSE)
        $this->data->page_template = $this->templates_path.'/'.$view;
        $this->data->templates_path = $this->templates_path;
        $this->load->view($this->templates_path.'/layouts/'.$this->layout, $this->data);
    

然后,在我的布局中,我将$page_template 变量中指示的视图加载到适当的位置

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
<!DOCTYPE html>
<html>
    <head>
        <?$this->load->view($templates_path.'/sections/head')?>
    </head>
    <body class="<?=$page_class?>">
        <?$this->load->view($templates_path.'/sections/header')?>
        <?if(isset($hpslider) && $hpslider)
            $this->load->view($templates_path.'/sections/hp_slider')?>
        <div class="pcontent">
            <div class="page">
                <?=$this->load->view($page_template);?>
            </div>
        </div>
        <?$this->load->view($templates_path.'/sections/footer')?>
    </body>
</html>

希望对你有所帮助。

【讨论】:

有趣。我将不得不把它分开一点,但这是有道理的。但是问题 - CI 的目的不是让您的控制器完成“工作”并让您的视图只显示传递给它的内容吗?是否从视图中调用单独的视图会“反对” CI 设计?还是我在那儿跑题了? 就我而言,控制器负责“逻辑”,模型负责“繁重的工作”(不仅限于数据库访问——还包括上传文件、发送电子邮件、复杂的计算等)。该视图用于显示控制器根据用户请求和模型提供的数据确定显示的内容,在我看来,这正是我提供的代码的作用。但欢迎大家提供更好的解决方案:) Silviu - 你所描述的听起来很像 Yii 的视图、控制器、组件关系(组件似乎与你在这里对模型的描述同义。)总的来说,我对框架和 MVC 还是很陌生- 仍在尝试找出最佳实践。我会拿走你提供的东西并运行它。感谢您的信息和详细信息! =) 很高兴能帮上忙。 TBH,'render' 的名字是从 Yii 框架中无耻地提升的 :) 但实际代码不是。早在我在几个项目中使用 Yii 之前,我就一直在 CI 中使用布局,但正是 Yii 决定我编写这个小方法,以便在 CI 中更轻松地使用布局。【参考方案2】:

我不使用 CI,但您可以使用 $_post 、 $_get 或段来让操作知道您要加载哪个页面。

段示例:当你转到 example.com/index.php/controller/index/home 然后它将加载“主页”视图。

public function index()
$page=$this->uri->segment(3);
$this->load->view('header_view');
$this->load->view('navigation_view');
$this->load->view($page);
$this->load->view('footer_view');

http://codeigniter.com/user_guide/libraries/uri.html

【讨论】:

【参考方案3】:

请在标题为Header and footer in CodeIgniter 的 SO 线程中查看我的答案。这就是我处理所有观点的方式。这是一种相当模块化的方法 - 希望对您有所帮助!

cmets 后更新

例如,主页可能会这样加载:

class Home extends CI_Controller
    function index()
        $d['v'] = 'home';

        //do database interaction here and 
        //ultimately assign results to some key in $d too.

        $this->load->view('init', $d);
    

【讨论】:

您将如何处理可变视图?将它们作为变量传递给方法? 正如另一个线程中提到的,我将视图名称分配给$d['v'] = 'the_view';,然后在控制器中调用$this-&gt;load-&gt;view('init', $d);。视图的名称被转换为$v 并最终使用&lt;? $this-&gt;load-&gt;view($v); ?&gt; 加载到body.php那部分我明白了。你将如何填充 $d['v']?将变量传递给同一构造函数中包含 $d['v'] 的方法。新的构造函数?一个构造函数中每组视图的不同方法?还是厨师的选择? ;)。 对不起@DanB。 - 我不确定我是否理解你的问题。在我的方法中,您只需在控制器中为$d['v'] 分配一个字符串。我应该提到$d['v'] 很短,因为我知道我会经常输入它。 CodeIgniter 文档通常填充 $data 数组并将其交给视图。请参阅我更新的答案。 (我也在帖子之间不小心在initinitiator 之间摇摆不定。它们是一样的。)

以上是关于在 CodeIgniter 中处理动态内容(最佳实践)的主要内容,如果未能解决你的问题,请参考以下文章

CodeIgniter 中处理数据库错误的最佳实践

CodeIgniter MVC 数据操作最佳方法

在 CodeIgniter 中动态调整图像大小而不使用 CI 图像处理函数

K8s系列-K8S 日志采集最佳实操

Codeigniter - CMS 的最佳路由配置?

Codeigniter 网站多语言 CMS 实施的最佳方式