我有用户,我有课程。我正在尝试在用户查看课程列表时为他们创建一个“加入”按钮,以便为他们订阅课程。
我被告知使用
class Course extends AppModel
{
public $hasAndBelongsToMany = array('User');
}
和
class User extends AppModel
{
public $hasAndBelongsToMany = array('Course');
}
但我不知道如何实现实际按钮并将信息发布到名为courses_users
我在哪里实现这个?
提前致谢!