【发布时间】:2016-04-04 07:14:27
【问题描述】:
我正在使用 cakephp,我想在我的数据库中插入表单数据,但我收到以下错误:
在默认数据源中找不到模型 Post 的表帖子。
如何将我的数据保存到数据库。在 cakephp 中我们如何将数据从控制器发送到模型?
// this is my view code
echo $this->Form->create('posts', array('action' => 'Add'));
echo $this->Form->input('title', array('label' => 'Enter your email address:'));
echo $this->Form->end('Add');
// this is my controller code
public function Add() {
$this->request->data['posts']['title'] = $this->request->data["posts"]["title"];
$this->Post->save($this->request->data);
}
【问题讨论】: