我正在控制器中进行查询,但我注意到我应该在模型中进行查询。
这是我在控制器中的代码
$this->db->where('page', 'your-secret-skill');
$this->data['articles'] = $this->article_m->get();
这是我在核心模型中的get方法:
public function get($id = NULL, $single = FALSE){
if ($id != NULL) {
$filter = $this->_primary_filter;
$id = $filter($id);
$this->db->where($this->_primary_key, $id);
$method = 'row';
}
elseif($single == TRUE) {
$method = 'row';
}
else {
$method = 'result';
}
if (!count($this->db->ar_orderby)) {
$this->db->order_by($this->_order_by);
}
return $this->db->get($this->_table_name)->$method();
}
我将如何解决这个问题并在文章模型中进行查询并使用控制器加载它?