-1

这是我的控制器类

public function _construct()
{
    parent::_construct();
    $this->load->model('customer_model');


}
public function create()
{

    $this->load->helper('form');
    $this->load->library('form_validation');
    $this->form_validation->set_rules('name', 'Title', 'required');
    $this->form_validation->set_rules('address', 'text', 'required');

    if ($this->form_validation->run() === FALSE)
    {

    $this->load->helper('url');
    $this->load->view('templates/header');  
    $this->load->view('master/customer');

    }
    else
    {
    $this->customer_model->register();
    //$this->load->view('news/success');
    }

} }

这是我的穆德尔课

类 Customer_model 扩展 CI_model {

public function _construct()
{
    $this->load->database();
}

public function register()
{

    $data = array(
        'name' => $this->input->post('name'),

        'address' => $this->input->post('address')
    );
    return $this->db->insert('registration', $data);
}

}

运行 codeigniter 时出现此错误

遇到 PHP 错误

严重性:通知

消息:未定义属性:Customer::$customer_model

文件名:控制器/customer.php

行号:30

致命错误:在第 30 行的 C:\xampp\htdocs\CodeIgniter_2.1.3\application\controllers\customer.php 中的非对象上调用成员函数 register()

我是codeigniter的新手,请告诉我为什么会发生这个错误

4

1 回答 1

0

在控制器和模型中,尝试更改:

public function _construct() {
....
}

public function __construct() { //double underscore
....
}
于 2013-03-22T09:43:20.140 回答