0

我有几个短新闻的网站,我们可以通过表格对每个新闻发表评论。我的问题就出现了。当我在一个表单中填写我的字段时,按下按钮后,所有表单都在重新加载而不保存,并且每个表单中的每个字段都必须填写,因此它们被视为一个部分如何避免它?

附加信息(信息是我的主要新闻模式,它与 Com 模式结合在一起)

index.ctp 表单

<br><h5>Add comment:</h5><br>
                <?php echo $this->Form->create('Com'); ?>
                <?php echo $this->Form->input(__('mail',true),array('class'=>'form-control')); ?>
                <?php echo $this->Form->input(__('body',true),array('class'=>'form-control')); ?>
                <?php $this->request->data['ip'] = $this->request->clientIp(); ?>
                <?php $this->request->data['info_id'] = $info['Info']['id']; ?>
                <?php echo $this->Form->submit(__('Add comment',true),array('class'=>'btn btn-info')); ?>
                <?php $this->Form->end(); ?>

控制器 ComsController.php

public function add()
{
    if($this->request->is('post'))
    {
        $this->Infos_com->create();
        $this->request->data['Infos_com']['ip'] = $this->request->clientIp();
        $this->request->data['Infos_com']['id_infos'] = $number;
        if($this->Infos_com->save($this->request->data))
        {
            $this->Session->setFlash(__('Comment is waiting for moderating',true),array('class'=>'alert alert-info'));
            return $this->redirect(array('controller'=>'Infos','action'=>'index'));
        }
        $this->Session->setFlash(__('Niepowodzenie dodania komentarza',true),array('class'=>'alert alert-info'));
        return TRUE;
    }}

和 Model Com.php,我注释行以避免在表单中填写每个字段的必要性

class Com extends AppModel
{
public $belongsTo = array('Info');
/*public $validate = array(
    'mail'=>array(
        'requierd'=>array(
            'rule'=>array('notEmpty'),
            'message'=>'Write your email'
        )
    ),
    'body'=>array(
        'required'=>array(
            'rule'=>array('notEmpty'),
            'messages'=>'Write smth'
        )
    )
); */
}
4

1 回答 1

0

我不认为你可以在视图中访问 $this->request->data (数据应该用表单输入,它没有提交)。您应该使用隐藏字段来传递参数,例如 IP od id ... 示例:

echo $this->Form->input('Infos_com.client_id', array( 'type' => 'hidden', 'value' => $value ));

如果您有多个表单,将它们的字段分开会很有用。例如:

echo $this->Form->input('Infos_com.' . $news_id . '.body', array('label' => __('body')));

这样你会得到一个数组,如:

$this->request->data['Infos_com'][$news_id]['body'].

然后你可以在模型中创建你的逻辑。

于 2013-11-14T16:15:25.210 回答