使用 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
?
谢谢。