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
你已經在某處定義了'MY_Model',對嗎? –
嘗試像這樣$ this-> load-> model('user/user_model'); –
這不起作用。看看我的編輯。 – user2576961