1

我正在尝试将 mysql 与 CodeIgniter 连接。我收到了这个错误:

load->database(); 
$query = $this->db->get('student'); return $query->result(); } } ?>

Fatal error: Class 'Student_model' not found in 
C:\wamp\www\CodeIgniter\system\core\Loader.php on line 303

这是我的代码:

模型

class Student_model extends CI_Model
{

    function __Construct()

    {
        parent::__Construct();
    }

    public function student_getall()
    {
        $this->load->database();
        $query = $this->db->get('student');
        return $query->result();
    }
}

看法

foreach($query as $row)
{
    print $row->fname;
    print $row->lname;
    print $row->roll;
    print $row->address;
    print "<br>";
}

控制器

class Student extends CI_Controller
{
    function __Construct()
    {
        parent::__Construct();
    }

    public function getall()
    {
        $this->load->model('student_model');
        $data['query'] = $this->student_model->student_getall();
        $this->load->view('student_view',$data);
    }
}
4

4 回答 4

2

问题是

function __Construct()
{
        parent::__Construct();
}

您可以看到首都C而不是c.

再说一遍,请确保您从使用文件开始,在 .之后没有任何空格<?php的结束文件。?>?>

于 2012-10-01T06:33:41.763 回答
0

我建议你自动加载数据库库,因为它会经常使用。您可以在 application/config/autload.php 文件中定义它,变量是,

$autoload['libraries'] = array('database');

您的模型文件名应该是,

student_model.php

并且类名应该是

Student_model

and $this->load->model('student_model') = $this->load->model('Student_model');

这不区分大小写。

`

于 2012-09-29T08:57:03.690 回答
0
May be your model starts with <?
And in yuour php.ini, shorttages is off thats why the issue is there.
Either enable shorttag or user <?php instead of <?
I found out this solution.
于 2013-03-19T09:03:56.497 回答
0

这个

function __Construct()
{
    parent::__Construct();
}

应该是小“c”。请检查您是否已正确保存student_model.php在您的模型文件夹中

/Codeigniter/application.models

于 2013-10-11T02:07:38.033 回答