我用params
在我的控制器是這樣的:Rails:哪裏定義了「params」?
class ProductsController < ApplicationController
def create
@product = Product.new(params[:aircon])
...
end
end
是params
的ApplicationController
屬性?我想不會,因爲它沒有@
前綴。那麼,究竟是什麼params
是?我可以在ProductsController
的任何自定義方法中使用它嗎?