将ID从一个控制器传递到另一个控制器-RAILS 5

时间:2018-09-15 17:16:42

标签: ruby-on-rails

如何自动在输入字段中放置/传递product_id?

我的

中有2个表产品和捕获页面

模式

products
t.string   "name"
t.string   "description"

capturepages
t.string   "name"
t.string   "email"
t.integer   "product_id"

模型

product.rb
has_many :capturepages

capturepage.rb
belongs_to :product

捕获页面控制器

class CapturepagesController < ApplicationController
  before_action :set_capturepage, only: [:show, :edit, :update, :destroy]

  def new
    @capturepage = Capturepage.new
    @product_id = params[:product_id]
    @product = Product.find(params[:product_id])
  end

  def create
    @capturepage = Capturepage.new(capturepage_params)
    @product = @capturepage.product
    respond_to do |format|
      if @capturepage.save
        format.html { redirect_to @product.affiliatecompanylink, notice: 'Capturepage was successfully created.' }
        format.json { render :show, status: :created, location: @capturepage }
      else
        format.html { render :new }
        format.json { render json: @capturepage.errors, status: :unprocessable_entity }
      end
    end
  end


  private
    def set_capturepage
      @capturepage = Capturepage.find(params[:id])
    end

    def capturepage_params
      params.require(:capturepage).permit(:name, :email, :product_id)
    end
end

views / products.show.html.erb

当用户单击以下链接时:

<%= link_to "buy now", new_capturepage_path(product_id: @product.id), target:"_blank" %>

它们被定向到捕获页面表单页面

视图/捕获页面/_form.html.erb

<%= simple_form_for(@capturepage) do |f| %>
  <%= f.error_notification %>

  <div class="form-inputs">
    <%= f.input :product_id, value: @product_id %>
    <%= f.input :name, placeholder: "Your Name", label: false %>
    <%= f.input :email, placeholder: "Your Email", label: false %>
  </div>

  <div class="form-actions">
    <%= f.button :submit, "get product" %>
  </div>
<% end %>

网址状态:http://localhost:3000/capturepages/new?product_id=1 捕获product_id,但product_id输入为空:

enter image description here

1 个答案:

答案 0 :(得分:3)

使用simple_form时,应将main.bundle.js放在optimization: { runtimeChunk: 'single', } 内。下面的代码应该可以解决您的问题

value