11

そのため、次のエラーが発生し続けます。

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
4

2 に答える 2

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 トリックは、コンソールでパスを確認するのに役立ちます!)

于 2012-07-06T21:35:25.903 に答える