0

我在 cakePHP 2 上。我有一个问题,我需要你的帮助。这是我的控制器的一些代码(来自 StudentsController.php),特别是“编辑”功能:

$students = $this -> Student -> find('list', array(
    'order' => 'Student.name ASC'
));
$this -> set('students', $students);

如何按当前学生的班级过滤列表,以便列表包含具有相同学生班级的所有学生?

我需要一些这样的代码

$students = $this -> Student -> find('list', array(
    'conditions' => array('Student.class_id' => CURRENT-STUDENT'S-CLASS),
    'order' => 'Student.name ASC'
));
$this -> set('students', $students);
4

1 回答 1

0

所以根据你的编辑功能,你的发现应该是这样的。

$students = $this -> Student -> find('list', array(
'conditions' => array('Student.class_id' => $this->request->data['Student']['class_id']),
'order' => 'Student.name ASC'

));

于 2012-11-02T17:25:34.927 回答