0

使用 Rails 3。我有以下内容:

# shop.rb
SHOP_TYPES = %w(cafe restaurant station)

# routes.rb
resources :shops do
  member do
    get :nearby_cafes, :nearby_restaurants, :nearby_stations
  end
end

不是routes.rb每次我在SHOP_TYPES数组中添加另一个成员时都更新我的,反正有没有读取数组中的routes.rb

谢谢。

4

1 回答 1

1
TYPES = :nearby_cafes, :nearby_restaurants, :nearby_stations
 ....
get *TYPES
于 2012-10-24T15:29:49.947 回答