I m使用铁路3.0.6。
在我的校准目录中,我有一例“申请”。
class ExampleApp < Sinatra::Base
get / do
"Hello from Sinatra"
end
end
And I m autoloading it with the application.rb config.auto_load_paths configuration.
在我的航道档案中,我只有:
match "/" => ExampleApp
And that matches fine when I run the rails server (Webrick). However if I try:
match "/example" => ExampleApp
访问当地东道方:3000/example给我没有一条与“/example”错误相匹配的道路。 驾驶航道显示路线是:
example /example(.:format) {:to=>ExampleApp}
如果我试图与控制者行动相匹配,那么它会做的是罚款,但不适用于上述Sinatra,因此我不敢肯定会发生什么。 我知道,有一些小小小小小小小小小小小小小小小小小小小米没有在铁路站的路上找到。
感谢任何帮助。