I've been studying ruby and rails for a little over a month and I've reproduced most of the tutorial apps that I could find but I'm still trying to wrap my head around MVC, especially rails controllers. When I read code I'm repeatedly confused by the use of params and the values that follow.
Could anyone explain params, where do they come from, what are they referencing? Or links to some good explanations?
def create
@vote = Vote.new(params[:vote])
item = params[:vote][:item_id]
uid = params[:vote][:user_id]
@extant = Vote.find(:last, :conditions => ["item_id = ? AND user_id = ?", item, uid])
last_vote_time = @extant.created_at unless @extant.blank?
curr_time = Time.now
end
I would like to be able to read this code line-by-line and understand what's going on.
Note: I've read rails guides and found multiple explanations via google but nothing that's given me that 'aha' moment.