Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一种方法可以获取 Rails 和 Sinatra 中使用的所有路由,如下所示
导轨:Rails.application.routes.routes
Rails.application.routes.routes
西纳特拉:Sinatra::Application.routes
Sinatra::Application.routes
同样,我们如何才能获得 Hanami 应用程序中使用的所有路线?
您可以使用以下内容:
#routes(blk) ⇒ 对象
#routes(路径)⇒对象
#routes ⇒ Hanami::Config::Routes
为应用程序指定一组路由,通过传递一个块或一个相对路径来查找描述它们的文件。