0

我的页面上有几个新闻,我们可以通过表单对每个新闻添加评论。所以实际上我的 index.ctp 上有 3 条新闻,每个新闻下都有一个表格来评论这个特定的新闻。问题是,当我添加评论时,数据来自页面上的最后一个表单。我真的不知道如何使它们多样化。我有红色的多记录表单每页的多个表单(最后一个连接到不同的操作),我不知道如何管理它。第二个问题是,我无法通过表单将 $id 变量发送到控制器( $id 具有真实值,我在 index.ctp 上显示它只是为了查看)

这是我的表格

 <?php $id = $info['Info']['id']; echo $this->Form->create('Com', array('action'=>'add',$id)); ?>
 <?php echo $this->Form->input(__('Com.mail',true),array('class'=>'form-control','field'=>'mail')); ?>
 <?php echo $this->Form->input(__('Com.body',true),array('class'=>'form-control')); ?>
 <?php  echo  $this->Form->submit(__('Dodaj komentarz',true),array('class'=>'btn btn-info')); ?>
 <?php $this->Form->end(); ?>

还有我的控制器 ComsController.php

class ComsController extends AppController
{
   public $helpers = array('Html','Form','Session');
   public $components = array('Session');

   public function index()
   {
       $this->set('com',  $this->Com->find('all'));
   }
   public function add($idd = NULL)
   {
       if($this->request->is('post'))
       {
           $this->Com->create();
           $this->request->data['Com']['ip'] = $this->request->clientIp(); 
           $this->request->data['Com']['info_id'] = $idd; 
           if($this->Com->save($this->request->data))
           {
               $this->Session->setFlash(__('Comment added with success',true),array('class'=>'alert alert-info'));
               return $this->redirect(array('controller'=>'Infos','action'=>'index'));
           }
           $this->Session->setFlash(__('Unable to addd comment',true),array('class'=>'alert alert-info'));
           return false;

       }
       return true;
   }
 }
4

1 回答 1

2

你没有关闭你的表格

<?php echo $this->Form->end(); ?>

代替

<?php $this->Form->end(); ?>

对于你应该写的 id 问题

echo $this->Form->create(
    'Com', 
    array('action'=>'add/'.$id
    )
);

或者

echo $this->Form->create(
    'Com', 
    array(
        'url' => array('action'=>'add', $id)
    )
);
于 2013-11-15T10:20:38.943 回答