这是我第一次使用codeIgniter,我尝试构建一个简单的数据库驱动应用程序。首先是模型:
class News_model extends CI_Model {
public function __construct()
{
$this->load->database();
}
public function get_news()
{
$query = $this->db->get('news');
return $query->result_array();
}
}
第二个控制器
class News extends CI_Controller {
public function __construct()
{
parent::__construct();
$this->load->model('news_model');
}
public function index()
{
$data['news'] = $this->news_model->get_news();
$data['title'] = 'News archive';
$this->load->view('templates/header', $data);
$this->load->view('news/index', $data);
$this->load->view('templates/footer');
}
视图“索引”:
<?php foreach ($news as $news_item): ?>
<h2><?php echo $news_item['title'] ?></h2>
<div id="main">
<?php echo $news_item['text'] ?>
</div>
<p><a href="news/<?php echo $news_item['slug'] ?>">View article</a></p>
<?php endforeach ?>
当我运行代码时,它显示页眉和页脚,但没有显示数据库记录。如果我将打印语句放在 foreach 外部的视图中,它可以工作,但不能在 foreach 内部。我使用 if($news) 来确定查询是否检索到任何结果,但没有检索到结果。
我怎么知道为什么没有从数据库中检索到结果?