我正在尝试使用活动记录和 codeigniter 从一些简单的表单中插入演示记录
function create_httpPost()
{
$data = array(
'title' => $this->input->post('title'),
'content' => $this->input->post('content')
);
$this->newsModel->createData($data); //error occures here
$this->index();//aka redirectToAction
}
但在发布表格后,我收到以下错误
**消息:未定义的属性:News::$newsModel
文件名:controllers/news.php 行号:29**
内部模型我有这个方法
function createData($data)
{
$this->db->insert('News', $data);
return;
}
我在这里做错了什么?