我是 codeigniter 的新手,正在尝试用户指南中的教程。但我坚持我的第三个教程是创建新闻项目。在我的控制器部分,它给出了以下错误:
严重性:通知
消息:未定义的属性:News::$form_validation
文件名:控制器/news.php
行号:44
我在控制器部分使用的代码是
public function create()
{
$this->load->helper('form');
$this->load->library('form_validation');
$data['title'] = 'Create a news item';
$this->form_validation->set_rules('title', 'Title', 'required');
$this->form_validation->set_rules('text', 'text', 'required');
if ($this->form_validation->run() === FALSE)
{
$this->load->view('templates/header', $data);
$this->load->view('news/create');
$this->load->view('templates/footer');
}
else
{
$this->news_model->set_news();
$this->load->view('news/success');
}
}
请帮我。
提前致谢。