我想知道最好做什么。现在我正在运行一个查询,看看我是否返回了任何结果,如果没有返回,我返回 NULL。
在我的控制器上,无论它是对象还是 NULL,我都会将该结果集发送到我的表,它会回显视图页面上的行。
对于我的表,我使用的是 jquery 数据表插件。我试图弄清楚当发送的值为 NULL 时如何让它处理数据,这样当它到达我的 foreach 循环时它不会向我显示错误。
控制器:
$news_articles = $this->news_model->get_news_articles();
$this->data['news_articles'] = $news_articles;
模型:
/**
* Get news articles
*
* @return object
*/
function get_news_articles()
{
$query = $this->db->get($this->news_articles_table);
if ($query->num_rows() > 0) return $query->result();
return NULL;
}
看法:
$tmpl = array ( 'table_open' => '<table class="table" id="newsarticles-table">' );
$data = array('name' => 'newsarticles', 'class' => 'selectall');
$this->table->set_heading(form_checkbox($data), 'ID', 'Date', 'Title');
$this->table->set_template($tmpl);
foreach ($news_articles as $row)
{
$checkbox_data = array(
'name' => 'newsarticles',
'id' => $row->id
);
$this->table->add_row(form_checkbox($checkbox_data), $row->id, $row->date_posted, $row->article_title);
}
echo $this->table->generate();