0

ユーザー レコードの削除と表示に問題があります。

ここに私のroutes.rbがあります

FinalApp::Application.routes.draw do


resources :users
devise_for :users, :controllers => { :registrations => 'admin' }



    resources :projects
    match "search" => "projects#search", :as => :search

    root :to => 'projects#index'
end

これが私の管理コントローラーです:

class AdminController < ApplicationController
def index
    @users = User.all



respond_to do |format|
      format.html # index.html.erb
      format.json { render :json => @users }
    end
  end

def create

    @user = User.new(params[:user])



    respond_to do |format|
      if @user.save
        format.html { redirect_to @user, notice: 'User was successfully created.' }
        format.json { render json: @user, status: :created, location: @user }
      else
        format.html { render action: "new" }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end




  # GET /users/1
  # GET /users/1.json
  def show
    @user = User.find(params[:id])
@user_user_id = params[:id]

    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @user }
    end
  end

  # GET /users/new
  # GET /users/new.json
  def new
    @user = User.new

    respond_to do |format|
      format.html # new.html.erb
      format.json { render json: @user }
    end
  end

  # GET /users/1/edit
  def edit
    @user = User.find(params[:id])
  end

  # POST /users
  # POST /users.json



  # PUT /users/1
  # PUT /users/1.json
  def update
    @user = User.find(params[:id])

    respond_to do |format|
      if @user.update_attributes(params[:user])
        format.html { redirect_to @user, notice: 'User was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: "edit" }
        format.json { render json: @user.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /users/1
  # DELETE /users/1.json
  def destroy
    @user = User.find(params[:id])
    @user.destroy

    respond_to do |format|
      format.html { redirect_to users_url }
      format.json { head :no_content }
    end
  end
end

これが私の見解です:

<%= stylesheet_link_tag "admin" %>
<body>
<div id ="title1">Admin</div>

<div class ="menu"></div>
<div id ="section3">
<table id = "mytable">
<table border = "1">
 <tr>
    <th>Username </th>


    <th>Email</th>
    <th>First Name</th>
        <th>Last Name</th>
<th>Admin?</th>

    <th></th>
    <th></th>
    <th></th>

  </tr>
  <%= link_to "New User", admin_new_path  %><br />

<% @users.each do |t| %>
  <tr>

    <td><%= t.username %></td>

    <td><%= t.email %></td>
    <td><%= t.firstname %></td>

    <td><%= t.lastname %></td>
<td><%= t.admin %></td>


    <td><%= link_to 'Show', t %></td>
    <td> <%= button_to "Delete", t, method: :delete, data: { confirm: 'Are you sure?' } %></td>

  </tr>
<% end %>
</table></br>

</body>

</html> 

ユーザーデータベースを表示できますが、レコードを削除しようとすると. このエラーが発生しますNo route matches [DELETE] "/users/11"。私はレールに慣れていないので、助けようとするときはこれを覚えておいてください。前もって感謝します。

編集:ここに私のルートがあります=>

    admin_index GET    /admin(.:format)               admin#index
                         POST   /admin(.:format)               admin#create
               new_admin GET    /admin/new(.:format)           admin#new
              edit_admin GET    /admin/:id/edit(.:format)      admin#edit
                   admin GET    /admin/:id(.:format)           admin#show
                         PUT    /admin/:id(.:format)           admin#update
                         DELETE /admin/:id(.:format)           admin#destroy
        new_user_session GET    /users/sign_in(.:format)       devise/sessions#new
            user_session POST   /users/sign_in(.:format)       devise/sessions#create
    destroy_user_session DELETE /users/sign_out(.:format)      devise/sessions#destroy
           user_password POST   /users/password(.:format)      devise/passwords#create
       new_user_password GET    /users/password/new(.:format)  devise/passwords#new
      edit_user_password GET    /users/password/edit(.:format) devise/passwords#edit
                         PUT    /users/password(.:format)      devise/passwords#update
cancel_user_registration GET    /users/cancel(.:format)        admin#cancel
       user_registration POST   /users(.:format)               admin#create
   new_user_registration GET    /users/sign_up(.:format)       admin#new
  edit_user_registration GET    /users/edit(.:format)          admin#edit
                         PUT    /users(.:format)               admin#update
                         DELETE /users(.:format)               admin#destroy
                projects GET    /projects(.:format)            projects#index
                         POST   /projects(.:format)            projects#create
             new_project GET    /projects/new(.:format)        projects#new
            edit_project GET    /projects/:id/edit(.:format)   projects#edit
                 project GET    /projects/:id(.:format)        projects#show
                         PUT    /projects/:id(.:format)        projects#update
                         DELETE /projects/:id(.:format)        projects#destroy
                  search        /search(.:format)              projects#search
                    root        /                              projects#index

EDIT2: これは、routes.rb ファイルの外観です。rake ルートを使用して、問題を解決するためにパスを変更することができました。

FinalApp::Application.routes.draw do

  # website home
  root :to => 'projects#index'

  # devise sessions (NB does not use admin/users controller)
  devise_for :users, :controllers => { :registrations => 'users' }

  # normal controllers
  resources :users
  resources :projects

  # custom routes
  match "search" => "projects#search", :as => :search

end
4

3 に答える 3

2

に追加する必要がありresources :usersますroutes.rb。いずれにせよ、いつでもrake routesコンソールをチェックインして、利用可能なルートを確認できます.

ちなみに、adminルートを定義する方法は完全に正しいわけではありません。すべてが ではありませんget。たとえば、 を作成すると、adminになりますpost。最も簡単な方法は、 のようなものを使用することですresources :admins

于 2012-09-17T14:40:14.593 に答える
1

admin#destroy につながる 2 つのルートがあります。

DELETE /users(.:format)               admin#destroy
DELETE /admin/:id(.:format)           admin#destroy

それでも、 /users/xx に一致するルートはなく、オプションのフォーマットビットで DELETE /users に一致するルートだけです。あなたは /admin/11 に一致するルートを持っているので、それを試してみればうまくいくでしょうが、私は物事を少し単純化しようとします.

デバイスリソースで実際にコントローラーを指定する必要がありますか? どこにも通じず、衝突するいくつかのルート(キャンセルなど)が大量に発生したため、正確に何をオーバーライドしたいのですか...

より単純なルート定義を試してください (NB 代わりに AdminController UsersController の名前を変更する必要があります。この規則に従うと、作業が楽になり、他の URL と一致するため、admin/1 ではなく users/1 などになります)

FinalApp::Application.routes.draw do

  # website home
  root :to => 'projects#index'

  # devise sessions (NB does not use admin/users controller)
  devise_for :users

  # normal controllers
  resources :users
  resources :projects

  # custom routes
  match "search" => "projects#search", :as => :search

end

次に、rake ルートを実行して、ルートがどこを指しているのかを確実に理解します。次のようなルートが必要です (NB:id ビット):

DELETE /users/:id(.:format)           users#destroy

または、管理コントローラーを好む場合 (およびカスタム ルートを整理する意思がある場合)

DELETE /admin/:id(.:format)           admin#destroy

おそらく、これに飛び込む前に、レールルーティングガイドを読むことができます.

http://guides.rubyonrails.org/routing.html

于 2012-09-17T20:55:31.440 に答える
1

これは、Devise のかなり標準的な使用法のように見えますが、注目すべき違いはコントローラーの名前だけです。したがって、devise ルーティングに必要なものは次の 1 つだけです。

devise_for :users, :controllers => { :registrations => 'admin' }

また、「get 'admin/*'」エントリをすべて削除します。REST 環境で作業している場合、すべての HTTP メソッドが GET であるとは限りません。REST メソッドについて説明している 1 つの記事を次に示します。

于 2012-09-17T15:27:57.963 に答える