当我尝试编写和运行 Code Igniter 教程时,它会抛出这个错误:
Call to undefined method News_model::get_news() in application\controllers\news.php on line 21
这是第 21 行:
$data['news'] = $this->news_model->get_news($slug);
模型
<?php
class News_model extends CI_Model {
public function __construct()
{
$this->load->database();
}
public function get_news($slug = FALSE)
{
if ($slug === FALSE)
{
$query = $this ->db->get('news')
return $query->result_array();
}
$query = $this->db->get_where('news', array('slug' => $slug));
return $query->row_array();
}
}