在rails中配置restful路由



我正在尝试在rails应用程序中创建一个restful web服务。我需要配置一个restful路由如下。

localhost:3000/books/<book_name>/new/<parameters to create Book Item>
    Eg:  http://localhost:3000/books/sherlock/new/id/123/business/<BU>/.../{other parameters}

如何在路由中配置它并访问控制器中的参数。请帮忙。

这种技术被称为"路由globbing"。http://guides.rubyonrails.org/routing.html#route-globbing和通配符段

然而,如果我是你,我会使用"默认"查询参数。原因有很多。

相关内容

  • 没有找到相关文章

最新更新