Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个上传图片的表单,提交后我想重定向回页面重新开始,如何将表单重置为默认设置?
// reset to default settings. $this->redirect(array('action' => 'index'));
如果它是重定向,请将它们作为命名参数传递,或者更好地作为查询字符串传递。这样您就可以将它们作为预设值添加到表单中:
if ($this->request->is('post')) { // save etc } else { $this->request->data['ModelName'] = $this->request->query; }
例如,假设您使用的是 cake2.3。
PS:您应该始终提及您正在使用的确切 cakephp 版本。