在添加管理员前缀/路由之前,一切正常......
目前,我有一个带有以下功能的 QuestionsController.php 文件:
public function admin_add() {
if ($this->request->is('post') ) {
$this->Question->create();
if ($this->Question->save($this->request->data)) {
$this->Session->setFlash('Your question has been saved.');
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash('Unable to add your question.');
}
} else {
$this->Session->setFlash('Not post.');
}
}
这是 /views/Questions/admin_add.php 的内容:
<h2>Add a question</h2>
<?php
echo $this->Form->create('Question');
echo $this->Form->input('nickname');
echo $this->Form->input('content');
echo $this->Form->input('option1');
echo $this->Form->input('option2');
echo $this->Form->input('option3');
echo $this->Form->end('Save question');
echo $this->Html->link('Cancel', array('controller' => 'questions', 'action' => 'index'));
注意到控制器底部的 setFlash("Not post.") 了吗?每次单击“保存问题”按钮时,我都会看到该消息?为什么?
更新
我们已经确定请求方法是get
,这就解释了为什么它不起作用。但现在真正的问题是为什么会这样get
。我很确定这是post
在添加管理员前缀之前。