在控制器中我有一个创建动作
def create
params[:note]
@note = current_user.notes.new(params[:note])
if @note.save
respond_with @note, status: :created
else
respond_with @note.errors, status: :unprocessable_entity
end
end
我想将另一个名为 current_user 的参数传递给模型,如何做到这一点以及如何在模型方法中检索传递的参数?