2014-07-06 44 views

回答

0

不是被安排進一個哈希另一種叫params像這樣:

{:product => {:name => 'grand', :type => 'chair'} } 

然後,您可以訪問這些在你的控制器是這樣的:

params[:product]  # would return {:name => 'grand', :type => 'chair'} 
params[:product][:name] # would return 'grand' 

您可以使用這個創建一個product

@product = Product.new(params[:product]) 
相關問題