0

嘿伙计们,我是 CakePHP 的新手,所以请帮助我,我无法将单个表单数据保存在两个表中。这是我的代码。

主要型号代码:

var $hasMany = array('Option');

控制器代码:

public function add()
{
    if (!empty($this->request->data))
    {
       $this->Question->saveAll($this->data);
    }
}

查看文件:

echo $this->Form->create('Question');
echo $this->Form->input('question');
foreach (range(0,2) as $index) {
  echo $this->Form->input('Option.'.$index.'.option');
}
echo $this->Form->end('Save Poll');

请告诉我哪里出错了。数据仅插入单个表中,而不插入其他表中。

4

1 回答 1

0

试试这个,如果它的工作。

<?php

if ($this->Question->save($this->data))
{
    $this->Question->Option->saveAll($this->data['Option']);
    $this->Session->setFlash(__('Question has been successfully edited.', true), 'default',array('class'=>'alert alert-success'));
    $this->redirect(array
    (
        'controller' => 'questions',
        'action'     => 'index'
    ));
    exit;
}
于 2013-01-25T09:03:08.567 回答