在rails中配置restful路由

时间:2014-04-15 18:51:32

标签: ruby-on-rails-3

我正在尝试在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}

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

1 个答案:

答案 0 :(得分:0)

这种技术被称为&#34;路由通配&#34;。 http://guides.rubyonrails.org/routing.html#route-globbing-and-wildcard-segments

然而,如果我是你 - 我会使用&#34;默认&#34;查询参数。出于很多原因。