我遵循此Railscasts tutorial以允许导入Excel数据。我的应用程序能够导入数据,但是,我想重定向到一个实例而不是索引页面,这证明是困难的。
当我将控制器设置为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
如果我可以提供任何其他信息,请告诉我。
提前致谢!
答案 0 :(得分:0)
您的before_action,#set_quote未设置为在#import操作之前运行,因此当您使用quote_path帮助程序时@quote为nil。然后帮助程序不知道您想要显示路径的引用的ID。如果你添加:import到before_action中的方法数组,它应该可以工作。