目前在将表单中的输入映射到相应表中的正确字段时遇到问题,当它插入数据库时,我只得到空白字段。没有弹出错误,但蛋糕似乎不知道将数据放在哪里。
<?php
class UserfilesController extends AppController {
public function index(){
$this->set('userfiles', $this->Userfile->find('all'));
}
public function latest() {
if (empty($this->request->params['requested'])) {
throw new ForbiddenException();
}
return $this->Userfile->find('all', array('order' => 'Userfile.created DESC', 'limit' => 10));
}
public function add() {
if ($this->request->is('post')) {
$this->Userfile->create();
if ($this->Userfile->save($this->request)) {
$this->render('/homes');
} else {
$this->Session->setFlash(__('Something went wrong!'));
}
}
}
/*public function add() {
if ($this->request->is('post')) {
print_r($this->request);
}
}*/
}