所以我一直遇到以下错误:
No route matches {:action=>"show", :controller=>"users"}
我尝试运行rake路线,我可以看到路线存在:
user GET /users/:id(.:format) users#show
PUT /users/:id(.:format) users#update
DELETE /users/:id(.:format) users#destroy
但是每当我尝试访问页面"/users/1"
(1是用户ID)时,我都会收到上述错误。有任何想法吗?谢谢!
这是我的routes.rb
:
SampleApp::Application.routes.draw do
root to: 'static_pages#home'
resources :users
resource :sessions, only: [:new, :create, :destroy]
match '/signup', to: 'users#new'
match '/signin', to: 'sessions#new'
match '/signout', to: 'sessions#destroy', via: :delete
match '/help', to: 'static_pages#help'
match '/about', to: 'static_pages#about'
match '/contact', to: 'static_pages#contact'
这是我的users_controller.rb
:
class UsersController < ApplicationController
before_filter :signed_in_user, only: [:index, :edit, :update]
before_filter :correct_user, only: [:edit, :update]
def show
@user = User.find(params[:id])
end
def new
@user = User.new
end
def create
@user = User.new(params[:user])
if @user.save
sign_in @user
flash[:success] = "Welcome to the Paper Piazza!"
redirect_to @user
else
render 'new'
end
end
def edit
@user = User.find(params[:id])
end
def update
if @user.update_attributes(params[:user])
flash[:success] = "Profile updated"
sign_in @user
redirect_to @user
else
render 'edit'
end
end
def index
@users = User.paginate(page: params[:page])
end
private
def signed_in_user
unless signed_in?
store_location
redirect_to signin_path, notice: "Please sign in."
end
end
def correct_user
@user = User.find(params[:id])
redirect_to(root_path) unless current_user?(@user)
end
end
答案 0 :(得分:1)
尝试修复拼写错误:
root :to 'static_pages#home'
(而不是root to:
),并将其移动到块的最后一行。如果这有所作为,请告诉我!
奇怪的是,我使用路由文件构建了一个新项目,该文件只是:
RoutingTest::Application.routes.draw do
resources :users
root :to => "static_pages#home"
end
当我在控制台中运行它时,我遇到了同样的错误:
>> r = Rails.application.routes ; true
=> true
>> r.recognize_path("/users/1")
=> ActionController::RoutingError: No route matches "/users"
...但是当我在稍微较旧的项目中运行相同的东西时,我得到:
>> r = Rails.application.routes ; true
=> true
>> r.recognize_path("/users/1")
=> {:action=>"show", :controller=>"users", :id=>"1"}
所以我对我所告诉你的东西会有所作为有信心。 (除此之外,Rails.application.routes技巧对于验证控制台中的路径很有用!)
答案 1 :(得分:0)
我遇到了类似的问题,我的路由只会返回根页面,但会显示在rake routes
中。根据特定命名空间的开发人员和所有路由,root to: (routing)
必须始终是最后一个。这与Rails路由指南(请参阅http://guides.rubyonrails.org/routing.html#using-root)相矛盾,该指南指出对root的任何调用都应位于文件的顶部。这绝对不适合我。有趣...