如何自动在输入字段中放置/传递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输入为空:
答案 0 :(得分:3)
使用simple_form
时,应将main.bundle.js
放在optimization: {
runtimeChunk: 'single',
}
内。下面的代码应该可以解决您的问题
value