通常在cakephp2上,我习惯于取消设置表单数据,一切正常。
有时我使用重定向来清除它。但我不能在当前页面中这样做。
有人发现了这个问题或解决方法吗?
答案 0 :(得分:1)
如果您在成功添加记录后仍留在“添加”页面,例如为了更快地输入多个记录,则需要在保存后重置实体。例如,如果您输入的帖子,您的控制器将类似于:
$post = $this->Posts->newEntity();
if ($this->request->is('post')) {
$post = $this->Posts->patchEntity($post, $this->request->data);
if ($this->Posts->save($post)) {
$post = $this->Posts->newEntity(); // <- Reset the entity
}
}
$this->set(compact('post'));
(错误检查,flash消息等等都是为了简洁而遗漏的。)
答案 1 :(得分:0)
另一种方法是简单地重定向到同一页面。 我遇到的问题是并非所有内容都被删除了
$contact = new ContactForm();
if ($this->request->is('post')) {
if ($contact->execute($this->request->data)) {
$this->Flash->success(__('Submited.'));
$this->request->data(null);
$contact = new ContactForm();
return $this->redirect('/(Same Page)');// This did the final trick for me
}
}