2017-10-17 25 views
-1

コントローラとモデルが2台あります。ProjectsSchemasです。 Schemasbelongs_toプロジェクト。 Projectshas_manyschemas。私はhttp://localhost:3000/projects/SLUG-PROJECT/schemas/SLUG-SCHEMAを探しています。経路が一致しません...必要なキーがありません

class Projects::SchemasController < ApplicationController 
    before_action :set_schema, only: [:show, :edit, :update, :destroy] 
    before_action :set_project, only: [:index, :show, :new, :edit, :update, :destroy] 


    def index 
    @schemas = Schema.all 
    end 


    def show 
    end 


    def new 
    @schema = Schema.new 
    end 


    def edit 
    end 


    def create 
    @schema = Schema.new(schema_params) 

    respond_to do |format| 
     if @schema.save 
     format.html { redirect_to project_url(@schema.project_id), notice: 'Schema was successfully created.' } 
     else 
     format.html { render :new } 
     end 
    end 
    end 


    def update 
    respond_to do |format| 
     if @schema.update(schema_params) 
     format.html { redirect_to project_url(@schema.project_id), notice: 'Schema was successfully updated.' } 
     else 
     format.html { render :edit } 
     end 
    end 
    end 



    def destroy 
    @schema.destroy 
    respond_to do |format| 
     format.html { redirect_to project_url(@schema.project_id), notice: 'Schema was successfully destroyed.' } 
    end 
    end 




    private 

    def set_schema 
     @schema = Schema.find(params[:id]) 
    end 

    def set_project 
     @project = Project.friendly.find(params[:project_id]) 
    end 


    def schema_params 
     params.require(:schema).permit(:number, :identification, :reference, :name, :description, :author, :controller, :priority, :notes, :status, :cycle, :slug, :project_id) 
    end 

end 

これは私のコードです:

respond_to do |format| 
    if @schema.update(schema_params) 
    format.html { redirect_to project_url(@schema.project_id), notice: 'Schema was successfully updated.' } 
    else 
    format.html { render :edit } 
    end 

それはインデックスとショーのページのために動作しますが、私は更新のために、次のエラーを取得、編集、および破壊後

は私SchemaControllerコードです:

ActionController::UrlGenerationError in Projects::SchemasController#update 

No route matches {:action=>"show", :controller=>"projects", :id=>nil} missing required keys: [:id] 

何が起こっているのか理解できますか?

+0

はあなたのconfig/routes.rbをを共有する気でしょうか? – dskecse

答えて

0

あなたが探しているのは、ネストされたルートです。この場合、あなたはこのルート宣言含めることができますprojectsのルートに加えて

resources :projects do 
    resources :schemas 
end 

を、この宣言意志もSchemasControllerへのルートschemas

/projects/:project_id/schemas/:id 

これはまた、project_schemas_urledit_project_schema_pathなどのルーティングヘルパーを作成します:schema URLがproject必要です。これらのヘルパーは、最初のパラメータとしてProjectのインスタンスを取ります:project_schemas_url(@project)

、常に既存のprojectschemasをインスタンス化するために覚えている、と言う:

@project.schemas.build 
関連する問題