4

我正在尝试在我拥有的视图中制作测试表格。到目前为止,我只有非常简单的字段来测试一切是否正常(不是)

$this->Form->create('user', array('url'=>array('controller'=>'users', 'type' => 'post', 'action'=>'add')));
echo $this->Form->input('username');
echo $this->Form->end(__('Submit', true));

现在这会打印提交按钮,我假设当它单击它时,它会调用我的 UsersController.php 文件中的“添加”函数。

但是我在控制器文件中有这样的东西

 class UsersController extends AppController {
     .......

public function add() {
 if ($this->request->is('post')) { 
   debug(TEST); die;
   $this->User->create();
   if ($this->User->save($this->request->data)) {
     $this->Session->setFlash(__('The user has been saved'));
     $this->redirect(array('action' => 'index'));
  } else {
  $this->Session->setFlash(__('The user could not be saved. Please, try again.'));
 }}}

  ........

}

注意那里的调试并在那里死掉,当我提交调试时不会打印 TEST 并且页面上没有任何反应,所以我认为我的表单没有正确提交。老实说,我不知道为什么,我的方法一直基于此处找到的解决方案 如何在另一个控制器中为一个模型提交表单?

4

1 回答 1

4

找到了解决方案,因为在创建表单之前缺少回声而被困了几个小时,我认为那些应该只打印东西。我觉得非常可怕

于 2013-04-30T22:29:28.163 回答