无法找到您指定的模型 - CodeIgniter Issue [英] Unable to locate the model you have specified - CodeIgniter Issue

查看:172
本文介绍了无法找到您指定的模型 - CodeIgniter Issue的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法找到模型错误。

$this->load->model('1/Gift_model');

我的模型文件名是 gift_model.php ,在/ models / 1 / 。

My model file name is gift_model.php within /models/1/.

我用以下方式声明模型。

I declare the model the following way.

class Gift_model extends CI_Model {

根据CodeIgniter的文档,我以正确的方式做。有什么建议么?

According to CodeIgniter's documentation I'm doing it the correct way. Any suggestions? I have 5 other models named exactly the same way and they're all loading fine.

推荐答案


  1. 设置模型类名大写 My_model

  2. 设置模型php文件名 my_model

  3. 使用小写(文件名)加载模型 $ this-> load-> model('my_model');

  1. Make the model class name Uppercase My_model
  2. Make the model php file name Lowercase my_model
  3. Load the model using Lowercase (file name) $this->load->model('my_model');

这篇关于无法找到您指定的模型 - CodeIgniter Issue的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆