我可能遗漏了一些东西,但是如何在 Rails 中映射“/”来执行 Sinatra 应用程序?我有:
class Core < Sinatra::Base
get '/' do
"This is root but it is caput."
end
get '/test' do
"This is test and it works"
end
end
所以如果我这样做路由:
match '/test' => Core
match '/'=>Core
只有 '/test' 触发 Sinatra 应用程序 '/' 运行 Rails。实际上我希望每条路线都由 Sinatra 应用程序处理。