Excel データをインポートできるようにするために、このRailscasts チュートリアルに従いました。私のアプリはデータをインポートできますが、インデックス ページではなく 1 つのインスタンスにリダイレクトしたいのですが、これが難しいことがわかっています。
コントローラを に設定するとredirect_to quotes_path
、問題なくクオート インデックスにリダイレクトされます。ただし、それを変更しても、redirect_to @quote
どちらのオプションも機能しません。リダイレクトが処理されると、次のようになります。redirect_to quote_path(@quote)
redirect_to quotes_path(@quote)
ActionController::UrlGenerationError (No route matches {:action=>"show", :controller=>"quotes", :id=>nil} missing required keys: [:id]):
app/controllers/quotes_controller.rb:10:in `import'
ここに私のquotes_controllerがあります:
class QuotesController < ApplicationController
before_action :set_quote, only: [:show, :edit, :update, :destroy]
def import
Employee.import(params[:file])
# redirect_to @quote, notice: "Census imported."
redirect_to quote_path(@quote)
end
# GET /quotes
# GET /quotes.json
def index
@quotes = Quote.all
@clients = Client.all
@employees = Employee.all
end
# GET /quotes/1
# GET /quotes/1.json
def show
@quote = Quote.find params[:id]
@quotes = Quote.all
@employees = Employee.all
@employee = Employee.find_by(company_name: @quote.company_name)
@client = Client.find_by(company_name: @quote.company_name)
@clients = Client.all
end
# GET /quotes/new
def new
@quote = Quote.new
@employee = Employee.new
end
# GET /quotes/1/edit
def edit
end
# POST /quotes
# POST /quotes.json
def create
@quote = Quote.new(quote_params)
respond_to do |format|
if @quote.save
format.html { redirect_to @quote, notice: 'Quote was successfully created.' }
format.json { render :show, status: :created, location: @quote }
else
format.html { render :new }
format.json { render json: @quote.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /quotes/1
# PATCH/PUT /quotes/1.json
def update
respond_to do |format|
if @quote.update(quote_params)
format.html { redirect_to @quote, notice: 'Quote was successfully updated.' }
format.json { render :show, status: :ok, location: @quote }
else
format.html { render :edit }
format.json { render json: @quote.errors, status: :unprocessable_entity }
end
end
end
# DELETE /quotes/1
# DELETE /quotes/1.json
def destroy
@quote.destroy
respond_to do |format|
format.html { redirect_to quotes_url, notice: 'Quote was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_quote
@quote = Quote.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def quote_params
params.require(:quote).permit(:company_name, :quote_name, :premium_total, :eff_date, :active)
end
def employee_params
params.require(:employee).permit(:company_name, :family_id, :first_name, :last_name, :dob, :sub_status, :gender, :uses_tobacco, :tobacco_cessation, :emp_status, :coverage_type, :currently_enrolled, :current_anthem, :current_plan_id, :quote_id, :premium)
end
end
追加情報を提供できるかどうかお知らせください。
お早めにどうぞ!