我正在尝试掌握codeigniter。尽管我认为一切都应该正常工作,但我遇到了以下错误Unable to load the requested file: helpers/database_helper.php
在 helpers 文件夹中只有 index.html 文件,在库中也只有 index.html。我在这里遗漏了什么吗,我已经从官方代码点火器网站下载了包。
显然 ci 找不到帮助文件,我已明确加载为
class mydb_model extends CI_Model {
public function getAll(){
$this->load->helper('database');
$q = $this->db->get('Test', 'desc');
if ($q->num_rows() >0) {
foreach ($q->result() as $row){
$data[] = $row;
}
return $data;
}
}
可能是什么问题?