-
rails map.namespace的疑问15
我定义了
map.resources :books # 前台
map.namespace :user do |user| #后台管理
user.resources :books
end
的路由,但请求user/books的时候有时候能正常转到user/books控制器,而有时却转到books控制器了,难道在user命名目录下的控制器必须不能同名?
根目录下
class BooksController < ApplicationController
user目录下的
class User::BooksController < ApplicationController
请求user/books时在BooksController 中输出控制器为user/books,但实现渲染的却是books目录下的视图而不是user/books目录下的视图
请求books/时时在BooksController 中输出控制器为books
请有知道的帮忙解释一下原因及解决方案!谢谢!
问题补充:
按理是没问题的,但就是请求一会儿正常一会又不正常,开始怀疑是不是session引起的,后面去掉大部分session问题依旧,就没再找session的原因了.下面是rotues.rb的全部代码:
ActionController::Routing::Routes.draw do |map|
map.root :controller=>'index'
map.resources :users
map.resources :news
map.resources :areas,:collection => { :json => :get,:switch => :post,:convert_code_name => :post }
map.resource :session
map.resources :salons,:member => { :vote => :post,:map => :get },:collection => { :search => :get },:has_many=>[ :comments,:fwus,:flacks,:jobs,:businesses ]
map.namespace :admin do |admin|
admin.root :controller => 'index'
admin.resources :areas
admin.resources :news
end
map.namespace :user do |user|
user.root :controller => 'index'
user.resources :salons,:has_many =>[ :fwus,:flacks,:jobs,:businesses ]
end
map.admin_top '/admin/top', :controller => 'admin/top', :action => 'index'
map.admin_menu_tree '/admin/menu_tree', :controller => 'admin/menu_tree', :action => 'index'
map.admin_main '/admin/main', :controller => 'admin/main', :action => 'index'
map.flacks '/flacks', :controller => 'flacks', :action => 'flacks'
map.jobs '/jobs', :controller => 'jobs', :action => 'jobs'
map.businesses '/businesses', :controller => 'businesses', :action => 'businesses'
map.user_profile '/user/profile', :controller => 'users', :action => 'edit'
map.signup '/signup', :controller => 'users', :action => 'new'
map.login '/login', :controller => 'sessions', :action => 'new'
map.logout '/logout', :controller => 'sessions', :action => 'destroy'
map.code_image '/code_image', :controller => 'code_image', :action => 'index'
map.user_show '/user/:name', :controller => 'users', :action => 'show'
end
问题补充:
Processing SalonsController#index (for 218.18.58.174 at 2008-06-24 22:02:05) [GET]
Session ID: BAh7CzoJdXNlcmkGOg5yZXR1cm5fdG8wIgpmbGFzaElDOidBY3Rpb25Db250
cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOglhcmVhbzoJ
QXJlYQk6EEBhdHRyaWJ1dGVzewkiCW5hbWUiGeW5v+S4nOecgSDmt7HlnLPl
uIIgIg91cGRhdGVkX2F0MCIJY29kZSIJNDQwMiIPY3JlYXRlZF9hdDA6FkBh
dHRyaWJ1dGVzX2NhY2hlewA6GEBjaGFuZ2VkX2F0dHJpYnV0ZXN7ByIJbmFt
ZTAiCWNvZGUwOhBAbmV3X3JlY29yZFQ6HGV4Y2VwdF9zZXRfY3VycmVudF9j
aXR5RjoMY3NyZl9pZCIlYTQ0NzZhZTgzZmY3NWE3Njk3MWYwMWY4YWM3MGU0
ZTI=--9566845969e09fab0176d713accdd750577dccb9
Parameters: {"action"=>"index", "controller"=>"user/salons"}
Rendering template within layouts/user
Rendering user/salons/index
------------------
Processing SalonsController#index (for 218.18.58.174 at 2008-06-24 22:02:05) [GET]
Session ID: BAh7CzoJdXNlcmkGOg5yZXR1cm5fdG8wIgpmbGFzaElDOidBY3Rpb25Db250
cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsAOglhcmVhbzoJ
QXJlYQk6EEBhdHRyaWJ1dGVzewkiCW5hbWUiGeW5v+S4nOecgSDmt7HlnLPl
uIIgIg91cGRhdGVkX2F0MCIJY29kZSIJNDQwMiIPY3JlYXRlZF9hdDA6FkBh
dHRyaWJ1dGVzX2NhY2hlewA6GEBjaGFuZ2VkX2F0dHJpYnV0ZXN7ByIJbmFt
ZTAiCWNvZGUwOhBAbmV3X3JlY29yZFQ6HGV4Y2VwdF9zZXRfY3VycmVudF9j
aXR5RjoMY3NyZl9pZCIlYTQ0NzZhZTgzZmY3NWE3Njk3MWYwMWY4YWM3MGU0
ZTI=--9566845969e09fab0176d713accdd750577dccb9
Parameters: {"action"=>"index", "controller"=>"user/salons"}
Rendering template within layouts/application
Rendering salons/index
问题补充:
class User::SalonsController < ApplicationController
layout 'user'
before_filter :login_required,:set_current_page,:non_salon_user
before_filter :find_salon,:except => [ :index,:new,:create ]
def index
@salons = current_user.salons.paginate(:page => params[:page],:order =>'id desc')
respond_to do |format|
format.html
format.xml { renderml => @salons }
end
end
------------------------------
class SalonsController < ApplicationController
before_filter :login_required,:only => :vote
before_filter :set_current_page
before_filter :find_salon,:except => [ :index,:search ]
def index
@salons = Salon.paginate(:page => params[:page],:conditions =>["city like ?",current_area.code+"%"],:order =>'id desc')
respond_to do |format|
format.html
format.xml { renderml => @salons }
end
end
有时如果没有登陆的话应该到登陆页面,结果还是去了salons/index
问题补充:
rails2.1 这个问题也不知道是什么原因造成的,非常不好调试,有时很难模拟测试.
问题补充:
http://www.imeifa.com.cn/salons
http://www.imeifa.com.cn/user/salons //这个没有登陆应该到登陆页2008年6月27日 13:29
3个答案 按时间排序 按投票排序
-
引用Parameters: {"action"=>"index", "controller"=>"user/salons"}
Rendering template within layouts/user
Rendering user/salons/index
引用Parameters: {"action"=>"index", "controller"=>"user/salons"}
Rendering template within layouts/application
Rendering salons/index
这个有点不可思议了,你的rails版本是多少啊?就算把/user/salons/index删了,也不会访问salons/index的。
代码中的index有特别的地方吗?SalonsController <ApplicationController def index;end end User::SalonsController <ApplicationController def index;end end
2008年6月27日 15:49
-
你上面说的是:访问/user/salons和/salons么?
引用但就是请求一会儿正常一会又不正常
有其他更多点信息吗?有出错吗?能不能具体描述下出现问题时候的场景和环境。2008年6月27日 15:20
-
引用请求user/books时在BooksController 中输出控制器为user/books,但实现渲染的却是books目录下的视图而不是user/books目录下的视图
首先,按照你现有的描述,是没有任何问题的。
routes.rb
map.resources :books map.namespace :user do |user| user.resources :books end
books GET /books {:action=>"index", :controller=>"books"}
user_books GET /user/books {:action=>"index", :controller=>"user/books"}
你是不是哪里还配置错了,routes.rb还有其他的配置吗?代码怎么写的,更多点信息补充下。
引用但请求user/books的时候有时候能正常转到user/books控制器,而有时却转到books控制器了,难道在user命名目录下的控制器必须不能同名?
可以同名的,不影响的。
引用请求books/时时在BooksController 中输出控制器为books
这一步正确的。2008年6月27日 14:52
相关推荐
With this fully revised new edition, take a holistic view of full-stack development to create usable, high-performing applications with Rails 5. Rails is a great tool for building web applications, ...
rails.vim提供了常用的一些命令,可以帮助开发,例如:Rgenerate, Rake, Rfind,RTview等,很方便,也很实用。 安装方法: 拷贝 autoload/rails.vim, plugin/rails.vim, 和 doc/rails.txt 到 ~/.vim 目录. ...
Ruby_on_Rails_rails.zip Ruby_on_Rails_rails.zip Ruby_on_Rails_rails.zip Ruby_on_Rails_rails.zipRuby_on_Rails_rails.zip Ruby_on_Rails_rails.zip Ruby_on_Rails_rails.zip Ruby_on_Rails_rails.zipRuby_on_...
Netbeans 6.0 JRuby on Rails 演示 .swf
[Ruby_on_Rails][中文][Rails_5.x]__03-2_._安裝不同版本的Rails與產生Rails_5.x版
《Ruby on Rails应用程序测试指南》深入解读 一、为何为Rails应用编写测试? 在《Ruby on Rails Guides_ A Guide to Testing Rails Applications.pdf》这一指南中,开篇即强调了为Rails应用编写测试的重要性。...
《Rails操作详解:快速步入Web开发新境界》 Ruby on Rails(简称Rails)是一个基于Ruby编程语言的开源Web应用程序框架,以其高效的开发速度和优雅的代码结构闻名于世。Rails的核心理念是“Don't Repeat Yourself”...
- **全面覆盖 Rails 3**:Rails Recipes Rails 3 版本全面覆盖了 Rails 3 的新特性和改进之处,确保读者能够跟上框架的发展趋势。 - **实践导向**:本书采用实际案例和解决方案的形式,帮助读者快速解决问题,并且...
在"基于Ember和twitterbootstrap的UI,用于设计为Rails引擎.zip"这个压缩包中,包含的项目ember-devise-bootstrap-master显然是一个已经整合了Ember.js、Devise(Ruby on Rails的认证解决方案)和Bootstrap的UI组件...
twitter-bootstrap-rails, 用于 Rails 5 4.x 资产管道的Twitter Bootstrap 用于 Rails 5和 Rails 4资产管道的 Twitter BootstrapBootstrap 是 Twitter的工具包,旨在开发网络应用程序和站点的kickstart 。...
### Addison.Wesley.RailsSpace:使用Ruby on Rails构建社交网络网站 #### 一、引言 《RailsSpace:使用Ruby on Rails构建社交网络网站》是一本由Michael Hartl和Aurelius Prochazka共同撰写的书籍。本书旨在通过...
一个与Rails 3.x,Rails 4.x和Rails 5.x兼容的Mustache / Handlebars模板处理程序,支持partials和一些额外的功能,使与客户端javascript共享原始模板更加容易。 这是一站式商店,为您提供灵感来自头发的模板。 ...
Rails是Ruby语言的一个著名Web应用框架,全称为Ruby on Rails,简称RoR。它遵循MVC(模型-视图-控制器)架构模式,为开发者提供了一种高效、简洁且具有表现力的开发环境。本教程将详细介绍Rails的安装过程,这对于...
Pragmatic - Agile.Web.Development.with.Rails.4.Sep.2013.pdf
Pragmatic.Bookshelf.Rails.for.PHP.Developers
根据提供的文件信息,“Wiley.Ruby.on.Rails.Bible.Oct.2008”这本书主要涉及Ruby on Rails的相关知识和技术。以下是对该书标题、描述以及部分内容中的关键知识点进行的详细解读: ### 标题:“Wiley.Ruby.on.Rails...
《Rails Recipes》是针对Ruby on Rails框架的一本实用指南,主要涵盖了Rails 3版本的相关内容。这本书通过一系列的“配方”(recipes),为开发者提供了在实际开发中可能会遇到的问题及其解决方案,旨在帮助开发者...
Pragmatic.Bookshelf.Deploying.Rails.Applications.May.2008