dongyuan9292 2014-03-20 11:08
浏览 43
已采纳

如何在CodeIgniter中加载页眉,侧边栏,页脚等页面视图?

Im trying to create my second web application in CodeIgniter.

In my previous project I created views for page header, footer and sidebar.

In every page controller I had to load these views like this:

class Home extends CI_Controller {

    public function index()
    {
        $this->load->view('header');
        $this->load->view('sidebar');
        $this->load->view('home'); // home
        $this->load->view('footer');
    }

    public function about()
    {
        $this->load->view('header');
        $this->load->view('sidebar');
        $this->load->view('about'); // about
        $this->load->view('footer');
    }

    public function contact()
    {
        $this->load->view('header');
        $this->load->view('sidebar');
        $this->load->view('contact'); // contact
        $this->load->view('footer');
    }
}

I don't like this and I feel im doing it wrong.

Any suggestions?

  • 写回答

5条回答 默认 最新

  • doumi2106 2014-03-20 11:57
    关注

    in advance, you can through this way to build your view:

    first create an Template in your view folder

    <!DOCTYPE html>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
        <meta content="MajidGolshadi" name="author">
        <?php echo $html_head; ?>
        <title></title>
    </head>
    <body>
        <div id="content">
                <?php echo $content; ?>
        </div>
    
        <div id="footer">
            <?php echo $html_footer; ?>
        </div>
    </body>
    </html>
    

    second create an library to load your view automaticaly

    <?php
    if ( ! defined('BASEPATH')) exit('No direct script access allowed');
    
    class Template
    {
        private $data;
        private $js_file;
        private $css_file;
        private $CI;
    
        public function __construct()
        {
            $this->CI =& get_instance();
            $this->CI->load->helper('url');
    
            // default CSS and JS that they must be load in any pages
    
            $this->addJS( base_url('assets/js/jquery-1.7.1.min.js') );
            $this->addCSS( base_url('assets/css/semantic.min.css') );
        }
    
        public function show( $folder, $page, $data=null, $menu=true )
        {
            if ( ! file_exists('application/views/'.$folder.'/'.$page.'.php' ) )
            {
                show_404();
            }
            else
            {
                $this->data['page_var'] = $data;
                $this->load_JS_and_css();
                $this->init_menu();
    
                if ($menu)
                    $this->data['content'] = $this->CI->load->view('template/menu.php', $this->data, true);
                else
                    $this->data['content'] = '';
    
                $this->data['content'] .= $this->CI->load->view($folder.'/'.$page.'.php', $this->data, true);
                $this->CI->load->view('template.php', $this->data);
            }
        }
    
        public function addJS( $name )
        {
            $js = new stdClass();
            $js->file = $name;
            $this->js_file[] = $js;
        }
    
        public function addCSS( $name )
        {
            $css = new stdClass();
            $css->file = $name;
            $this->css_file[] = $css;
        }
    
        private function load_JS_and_css()
        {
            $this->data['html_head'] = '';
    
            if ( $this->css_file )
            {
                foreach( $this->css_file as $css )
                {
                    $this->data['html_head'] .= "<link rel='stylesheet' type='text/css' href=".$css->file.">". "
    ";
                }
            }
    
            if ( $this->js_file )
            {
                foreach( $this->js_file as $js )
                {
                    $this->data['html_head'] .= "<script type='text/javascript' src=".$js->file."></script>". "
    ";
                }
            }
        }
    
        private function init_menu()
        {        
          // your code to init menus
          // it's a sample code you can init some other part of your page
        }
    }
    

    third load your library in every controller constructor and then use this lib to load you view automatically

    to load additional js in your view you can use addJS method in this way:

    $this->template->addJS("your_js_address");
    

    for Css:

    $this->template->addCSS("your_css_address");
    

    and to show your page content call your view file with show method

    $this->template->show("your_view_folder", "view_file_name", $data);
    

    i hope this codes help you

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 使用yolov5-7.0目标检测报错
  • ¥15 对于这个问题的解释说明
  • ¥200 询问:python实现大地主题正反算的程序设计,有偿
  • ¥15 smptlib使用465端口发送邮件失败
  • ¥200 总是报错,能帮助用python实现程序实现高斯正反算吗?有偿
  • ¥15 对于squad数据集的基于bert模型的微调
  • ¥15 为什么我运行这个网络会出现以下报错?CRNN神经网络
  • ¥20 steam下载游戏占用内存
  • ¥15 CST保存项目时失败
  • ¥20 java在应用程序里获取不到扬声器设备