Rails 3: routing to customer areas

拜拜、爱过 提交于 2019-12-25 18:10:25

问题


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 application 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?


回答1:


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.



来源:https://stackoverflow.com/questions/4739834/rails-3-routing-to-customer-areas

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!