开发者

Rails 3: routing to customer areas

开发者 https://www.devze.com 2023-02-05 08:08 出处:网络
I\'m a Rails 3 beginner, but have experiences with other MVC web frameworks and need a starting hint about how to setup my routing in Rails. The app开发者_JS百科lication should allow users to register

I'm a Rails 3 beginner, but have experiences with other MVC web frameworks and need a starting hint about how to setup my routing in Rails. The app开发者_JS百科lication should allow users to register and after that the users data should be available at URLs like:

http://domainname/username/xyz

The common and user independent part should be available at

http://domainname/abc

To distinguis between both routes, I would force usernames to have at least 6 characters and all "abc"-routes will have 5 or less. Until this point I would be manage the routing by myself, but for the "xyz" part of the user area I would like to use the existing REST full features of rails. Any hint how to do that?


Have you already read http://edgeguides.rubyonrails.org/routing.html?

It's really a good resource for this sort of question. I believe some of the scheme you describe falls into the "Non-Resourceful" routing category.

0

精彩评论

暂无评论...
验证码 换一张
取 消