不能使用 cakephp 的关联模型
我设计了图像等数据库模型和编码模型关联,但无法从学生模型访问 stoc_wish 和 ctos_wish 模型。
// student.php
class Student extends AppModel {
public $belongsTo = array('Team');
public $hasMany = array('Stoc_wish', 'Ctos_wish');
}
// stoc_wish.php
class Stoc_wish extends AppModel {
public $belongsTo = array('Student', 'Cuser');
}
// ctos_wish.php
class Ctos_wish extends AppModel {
public $belongsTo = array('Student', 'Cuser');
}
请给我有用的建议。
CakePHP 版本 => 2.6