我正在尝试使用下面的代码 append_css。在较旧的项目中,以下代码通常可以工作。作为参考,我正在使用 CodeIgniter 和模板 Sparks
public function __construct() {
parent::__construct();
$this->load->library('template');
$this->template
->append_css('/public/css/app.css');
}
public function index(){
$this->template->build('welcome_message.php');
}
}
我收到以下错误
Fatal error: Call to undefined method Template::append_css() in /Users/Afont/quals/codeigniter-test/application/controllers/welcome.php on line 9