在CakePHP 3.x中保存HasMany关联数据

时间:2016-01-06 10:27:32

标签: php mysql orm associations cakephp-3.0

我有两张桌子。我的主要表是学生。我的辅助表是考试。我正在尝试使用 hasMany belongsToMany 关联保存这两个表。但它仅在学生表中保存数据,而不是在考试中。任何人都可以帮我解决这个问题。

学生模特:

class StudentsTable extends Table {
  public function initialize(array $config) {
    $this->addBehavior('Timestamp');
    parent::initialize($config);
    $this->table('students');
    $this->primaryKey(['id']);
    $this->hasMany('Exams', [
      'className' => 'Exams',
      'foreignKey' => 'student_id',
      'dependent'=>'true',
      'cascadeCallbacks'=>'true']);
  }
}

考试模型:

class ExamsTable extends Table {
  public function initialize(array $config) {
    parent::initialize($config);
    $this->table('exams');
    $this->primaryKey(['id']);
    $this->belongsToMany('Students',[
      'className'=>'Students',
      'foreignKey' => 'subject_id',
      'dependent'=>'true',
      'cascadeCallbacks'=>'true']);
  }
}

我的学校.ctp:

echo $this->Form->create();
echo $this->Form->input('name');
echo $this->Form->input('exams.subject', array(
  'required'=>false,
  'multiple' => 'checkbox',
  'options' => array(
    0 => 'Tamil',
    1 => 'English',
    2 => 'Maths')));
echo $this->Form->button(__('Save'));
echo $this->Form->end();

在我的控制器中:

public function school() {
  $this->loadModel('Students');
  $this->loadModel('Exams');
  $student = $this->Students->newEntity();
  if ($this->request->is('post')) {
    $this->request->data['exams']['subject'] =
      implode(',',$this->request->data['exams']['subject']);
    $student = $this->Students->patchEntity(
      $student, $this->request->data, ['associated' => ['Exams']]
    );
    if ($this->Students->save($student)) {
      $this->Flash->success(__('The user has been saved.'));
    } else {
      $this->Flash->error(__('Unable to add the user.'));
    }
  }
}

2 个答案:

答案 0 :(得分:0)

Patching BelongsToMany Associations

您需要确保能够设置考试。设置accessibleFields以允许您修补关联数据

$student = $this->Students->patchEntity(
  $student, $this->request->data, [
      'associated' => ['Exams'],
      'accessibleFields' => ['exams' => true]
  ]
);

您也可以使用实体中的$ _accessible属性执行此操作。

答案 1 :(得分:0)

我从来没有做过很多人因为我不认为它是这样的(我的意思是没有伤害我的话。)但我会试着解释一下。你的人际关系应该属于所有人,因为考试会有很多学生,学生会有很多考试。所以基本上它们都是相同的。你需要的是另一个连接它们的表格,它们将被称为students_examsexams_students(我认为它是exams_students,因为E出现在S之前),因为如果你正确地命名所有内容,大部分都会自动发生。< / p>

假设您知道patchEntity的工作原理,正确创建$this->request->data会自动对其进行修补,并在保存时将其保存在正确的表格中。如果您还有其他问题,请随时提出更多问题。 :)