2013-07-23 169 views
0

我想弄清楚爲什麼登錄控制器不會加載名爲user_model的用戶模塊模型。我還包括了文件結構。我想指出我在我的應用程序中使用了Jamie Rumbelow的MY_Model。 https://github.com/jamierumbelow/codeigniter-base-model無法加載模塊模型文件

<?php 

if (! defined('BASEPATH')) exit('No direct script access allowed'); 

class Login extends Backend_Controller 
{ 
    public function __construct() 
    { 
     parent::__construct(); 
     $this->load->model('user/user_model', 'user'); 
    } 
} 

<?php 

class User_model extends MY_Model 
{  
    public function __construct() 
    { 
     parent::__construct(); 
    } 
} 

-application 
    -modules 
     -user 
      -controllers 
       login.php 
      -models 
       user_model.php 
+0

你已經在某處定義了'MY_Model',對嗎? –

+0

嘗試像這樣$ this-> load-> model('user/user_model'); –

+0

這不起作用。看看我的編輯。 – user2576961

回答

0

我能夠通過添加一種推廣上,我已經錯過了文件名來解決這個問題。