How to Deal With Codeigniter Templates?

前端 未结 12 1892
梦谈多话
梦谈多话 2020-12-08 01:02

I\'m fairly new to MVC, and I\'ve found CodeIgniter recently. I\'m still learning everyday, but one problem is its template engine. What is the best way to create templates

12条回答
  •  猫巷女王i
    2020-12-08 01:53

    There is a library which allows you to use templates in CodeIgniter in a native style. To load a template/theme just do:

    $this->load->theme(‘theme_name’);
    

    To load CSS and javascript files from your views you can do:

    $this->load->css(‘path/file.css’);
    $this->load->js(‘path/file.js’);
    

    You can optionally control the way browsers cache CSS & JS files.

提交回复
热议问题