CodeIgniter PHP 模型访问“无法找到您指定的模型”
2022-08-30 11:43:58
我一直在尝试为我正在构建的网站加载一些模型。但是,由于未知原因,它将带来以下错误:
An Error Was Encountered
Unable to locate the model you have specified: logon_model
现在,我已经完成了我的研究。问题在于IC处理小写的文件名。但是,我的文件和文件调用都是小写的,如下所示:
echo "VALIDATING";
// Validation passed. Off we go to account info verification from AA's database. God help us all.
$this->load->model('logon_model');
echo "FOUND MODEL";
$res = $this->logon_model->verify_user($this->input->post('username'),$this->input->post('password'));
echo $this->input->post('username');
echo $this->input->post('password');
执行未达到“FOUND MODEL”,因此在模型加载时停止。我尝试使用:
$this->load->model(site_url('logon_model'));
没有结果。需要提到模型文件是否正确放置在正确的模型文件夹中?
我该如何解决这个问题?
编辑 :模型文件的标题:
class Logon_model extends CI_Model {
....