我想编辑我的帖子,但是当我访问它时 http://.../posts/edit/2 它只显示帖子已更新的 Flash 消息,有什么问题吗?它不显示编辑表单...
function edit($id = NULL) {
$this->Post->id = $id;
if($this->request->is('post')){
$this->request->data = $this->Post->read();
}else {
if($this->Post->save($this->request->data)){
$this->Session->setFlash('The post has been updated');
$this->redirect(array('action'=>'index'));
}
}
}
我的编辑页面
<h2>Edit post</h2>
<?php
echo $this->Form->create('post',array('action'=>'edit'));
echo $this->Form->input('title');
echo $this->Form->input('body');
echo $this->Form->input('id', array('type'=>'hidden'));
echo $this->Form->end('Edit Post');
?>