嘿我堅持我的方向在鐵軌。這些創建方法之間的區別是什麼
我得到了用戶模型,課程模型和課程註冊模型。
當我想添加一個鏈接在我的課程索引視圖像
link_to 'join' CourseEnrollment.create(:course_id => course.id, :user_id => current_user)
這是否創建方法屬於我的模型?我很困惑,因爲在我的用戶模型中,我定義了一個使用role_assignments.create(.....)
的方法。這兩種創建方法有什麼區別?順便說一句,我無法使用course_enrollments.create。 Thx你的時間
嘿thx爲您的答覆。我也可以在我的視圖中使用`current_user.course_enrollments.create(:course_id => course.id,:user_id => current_user`而不是`CourseEnrollment.create(...)` – daniel 2011-01-30 03:45:52