导轨版本 5.1.4
你好,
我无法将 simple_form_for 的字段值immo_type保存到我的控制器页面
#app\controllers\pages_controller.rb
class PagesController < ApplicationController
skip_before_action :configure_permitted_parameters, only: [:home]
def home
@purchase = Purchase.new
@immo_type = params[:immo_type]
end
end
风景 :
#app\views\pages\home.html.erb
<%= simple_form_for @purchase, url: purchases_path(@purchase), :method => :post do |f| %>
<%= f.input :address %>
<%= f.input :immo_type %>
<%= f.button :submit, "Search" %>
该模型 :
#app\models\purchase.rb
class Purchase < ApplicationRecord
belongs_to :user
has_many :users, :through => :searches
end
抱歉,我是 ruby on rails 的新手!!!
我尝试<%= debug params %>
在我的 Pages 控制器中放置或“加注”。我有这个消息
--- !ruby/object:ActionController::Parameters 参数:!ruby/hash:ActiveSupport::HashWithIndifferentAccess 控制器:页面操作:允许主页:false
请问你能帮帮我吗 ?