我剛剛在我的rails(v3.0.1)應用程序中設置了Sinatra v1.1.0。但我不能調用是超過1級深的任何路由,這意味着該工程 - http://localhost/customer/3,Sinatra&Rails 3 routes issue
但是這一次不工作 - http://localhost/customer/3/edit,我得到一個「路由錯誤」
這裏的西納特拉對象
class CustomerApp < Sinatra::Base
# this works
get "/customer/:id" do
"Hello Customer"
end
# this does NOT work
get "/customer/:id/edit" do
"Hello Customer"
end
end
這是我在軌routes.rb中文件 -
match '/customer/(:string)' => CustomerApp
我猜我需要在航線網絡的一些魔術樂?可能是什麼問題呢?
routes.rb文件中有大量的例子被註釋掉了。 – rwilliams 2010-11-16 07:25:22