model:<?php      class Test_model extends CI_Model{
             function __construct()
       {
        // Call the Model constructor
        parent::__construct();
       }
           
          
          }
?>
controller部分:
$this->load->model("test_model");
var_dump($this->Test_model);
错误信息:
Undefined property: Login:Test_model