0

为了允许导入 Excel 数据,我遵循了这个Railscasts 教程。我的应用程序能够导入数据,但是,我想重定向到一个实例而不是索引页面,事实证明这很困难。

当我将控制器设置为 时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

如果我可以提供任何其他信息,请告诉我。

提前谢谢!

4

1 回答 1

0

您的 before_action, #set_quote 未设置为在 #import 操作之前运行,因此当您使用 quote_path 帮助器时,@quote 为零。然后,助手不知道您想要显示路径的报价的 id。如果将 :import 添加到 before_action 中的方法数组中,它应该可以工作。

于 2015-04-08T19:23:52.970 回答