我是Rails的新手控制訪問記錄....這是我正在試圖做的....Rails 3中,幫助基於用戶ID
我創建了筆記支架( t.text:content,t.integer:user_id)
我現在想要做的只是允許用戶查看他們創建的筆記。即(== USER_ID)
在我/app/controllers/notes_controller.rb
我有以下幾點:
class NotesController < ApplicationController
before_filter :authenticate
before_filter :correct_user
.
.
.
.
def correct_user
@noteuserid = Note.find(:conditions=>["note.user_id=?", @noteuserid])
redirect_to(root_path) unless current_user?(@noteuserid)
end
我在瞭解如何編寫以下行的問題:@ noteusefind(:conditions => [「note.user_id =?」,@noteuserid])
任何想法?
感謝
不應該工作的呢?注意:([「user_id =?」,current_user]) – AnApprentice 2010-09-05 22:13:57