- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Rails 的新手,正在尝试弄清楚如何将参数从 View 传递到表单,然后再传递到 Controller ,或者最有可能的是,找到一种为新对象分配外键的更好方法。我有一个链接到特定 socket 对象的按钮,此按钮允许用户创建与该 socket 关联的新设备对象。我的设备表上有一个指向 socket ID 的外键。
<%= button_to 'Add Device', new_device_path, :method => :get, params: {:oulet_id => outlet.id} %>
new_device_path
然后通过 new.html.erb
:
<h1>Add New Device to Outlet</h1>
<%= render 'form' %>
<%= button_to 'Back', grows_path, :method => :get %>
然后继续_form.html.erb:
<%= form_with model: @device, local: true do |form| %>
<% if @device.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(device.errors.count, "error") %> prohibited this device from being saved:</h2>
<ul>
<% @device.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<p>
<%= form.label :title %><br />
<%= form.text_field :title %>
</p>
<p>
<%= form.submit %>
</p>
<% end %>
问题是 new.html.erb
收到我的 params[:oulet_id]
,但不是表单,所以我无法将它们传递给 Controller ,在那里我可以设置 oulet_id
新设备上的条目到特定的 socket 。
以前,我已经能够直接从表单传递自定义参数并在 Controller 上处理它们并完成我的要求。然而,在这种情况下,我觉得像这样尝试通过多个页面向前传递参数不是正确的方法......我应该如何完成这个?
最佳答案
这是一个简单的解决方案,需要对您当前的应用程序进行最少的更改。
您可以在DevicesController 的#new 方法中设置该属性,并将其作为隐藏字段传递给表单,如下所示:
class DevicesController < ApplicationController
def new
@device = Device.new(outlet_id: params[:outlet_id])
end
end
现在向表单添加一个隐藏字段。这是保存和发送 outlet_id
所必需的到表单路径(在本例中为 POST /devices/:id
)。为简单起见,我省略了错误处理部分。
<%= form_with model: @device, local: true do |form| %>
<%= form.hidden_field :outlet_id %>
<p>
<%= form.label :title %><br />
<%= form.text_field :title %>
</p>
<p>
<%= form.submit %>
</p>
<% end %>
不要忘记在您的DevicesController#device_params 方法中将新参数列入白名单,否则它不会保存。
更好的方法是使用 Nested Resources ,但这需要进行结构性改变。首先在你的 routes.rb
中添加一个嵌套路由文件:
resources :outlets do
resources :devices, shallow: true
end
这将创建以下路由:
+-----------+---------------------------------+-------------------+------------------------+
| HTTP Verb | Path | Controller#Action | Named Helper |
|-----------|---------------------------------|-------------------|------------------------|
| GET | /outlets | outlets#index | outlets_path |
| GET | /outlets/:id | outlets#show | outlet_path |
| GET | /outlets/new | outlets#new | new_outlet_path |
| GET | /outlets/:id/edit | outlets#edit | edit_outlet_path |
| POST | /outlets | outlets#create | outlets_path |
| PATCH/PUT | /outlets/:id | outlets#update | outlet_path |
| DELETE | /outlets/:id | outlets#destroy | outlet_path |
| GET | /outlets/:outlet_id/devices | devices#index | outlet_devices_path |
| GET | /devices/:id | devices#show | device_path |
| GET | /outlets/:outlet_id/devices/new | devices#new | new_outlet_device_path |
| GET | /devices/:id/edit | devices#edit | edit_device_path |
| POST | /outlets/:outlet_id/devices | devices#create | outlet_devices_path |
| PATCH/PUT | /devices/:id | devices#update | device_path |
| DELETE | /devices/:id | devices#destroy | device_path |
+-----------+---------------------------------+-------------------+------------------------+
现在添加一个before_action
Controller 中的回调以及为 #new
构建新实例的新方法和 #create
:
class DevicesController < ApplicationController
before_action :set_device, on: %i[show edit update delete] # already present
before_action :set_outlet, on: %i[index new create] # new
def new
# for outlet has_many devices
@device = @outlet.devices.build
# for outlet has_one device
@device = @outlet.build_device
end
def create
# for outlet has_many devices
@device = @outlet.devices.build(device_params)
# for outlet has_one device
@device = @outlet.build_device(device_params)
# followed by your normal create stuff
end
# code...
private
def set_devise # already present
@device = Device.find(params[:id])
end
def set_outlet # new
@outlet = Outlet.find(params[:outlet_id])
end
# code ...
end
现在删除 params 参数并将按钮的路径更改为:
<%= button_to 'Add Device', new_outlet_device_path(outlet), method: :get %>
现在要做的最后一件事是更改表单的 url,使其指向 #create 和 #update 的正确路径。为此,将表单创建行更改为:
<%= form_with model: [@outlet, @device].compact, local: true do |form| %>
在 Rails 中将数组传递给表单助手通常会设置嵌套路径。我调用 #compact 以确保表单在编辑时能够正常工作。因为当您编辑设备时 @outlet
未设置导致 [nil, #<Device...>]
.当调用 #compact 时 nil
值从数组中删除。
这将导致以下请求:
POST /outlets/:outlet_id/devices
对于新设备PUT /devices/:id
对于现有设备关于ruby-on-rails - 将自定义参数从 View 传递到 form_with,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49888428/
我正在尝试将隐藏字段添加到 form_with。 这里有 3 次尝试(和结果/错误信息) 第一次尝试 发件人:https://guides.rubyonrails.org/form_helpers.h
我正在重构我的应用程序的路由以解决 rule of thumb因为我的路线很长。 假设我有以下模型 class Company < ApplicationRecord has_many :proj
早上好。 我正在学习教程 http://edgeguides.rubyonrails.org/getting_started.html我发现以下内容: 我有一个名为 ArticlesControlle
我收到错误: undefined form_with for #:0x551e5a8> in articles#new 错误发生在以下文件中:new.html.erb其中有:
我正在使用 form_with helper 创建一个新表单,正如您所知,正在检测您是否位于新记录页面或编辑页面([遵循 Rails 指南中的 CRUD 示例][1],我将表单渲染为重用表单的一部分)
我正在尝试使用最新的 form_with 发送 Ajax 帖子。 这就是我所做的。 jQuery(document).ready(function($) { $('#co
我的应用程序中有一个表单,我通过以下方式声明它: = form_with model: project, remote: true, method: :put do |f| = f.select
Rails 的新手,正在尝试弄清楚如何将参数从 View 传递到表单,然后再传递到 Controller ,或者最有可能的是,找到一种为新对象分配外键的更好方法。我有一个链接到特定 socket 对象
对于以下内容,如何将 form_for 转换为 form_with: 我查看了 Rails 的 form_with 文档,但没有找到任何相关示例。 谢谢! 最佳答案 form_with 具有 sco
对于以下内容,如何将 form_for 转换为 form_with: 我查看了 Rails 的 form_with 文档,但没有找到任何相关示例。 谢谢! 最佳答案 form_with 具有 sco
我尝试了 form_tag 和 form_with - 结果是一样的, Controller 的 Action 永远不会被触发。 # routes.rb resources :products do
背景 在我的应用程序中,系列 由许多书籍 组成。系列的显示页面允许用户查看系列中的所有书籍并使用表单向系列中添加新书。 显示 页面上列出的每本书都有指向该书的编辑 页面的链接。编辑页面包含用于最初添加
我正在使用名为 jquery-minicolors-rails 的 gem 创建一个 rgb 表。然而,github 只显示了 simple_form_for 的例子。我正在使用 form_with。
Rails 5 引入了新的表单辅助方法 form_with . 和form_for有什么区别什么时候使用更合适? 最佳答案 这真的是为 Rails 5.1 做准备,其中只有 form_with应该使用
使用 rails5 的 form_with,我想通过单击 GET 按钮来显示当前时间文本。但是文字没有更新。 虽然我按下了按钮, 文字未更新。 响应文本已更新。 users_controller.rb
每 this pull request我可以看到一个数组应该传递给 form_with的模型参数。但是,当我提供以下内容时: ... Rails 将返回 - ActionView::Templ
我用这个把我的头发扯掉了。我在带有嵌套资源的 form_with 上得到了一个未经许可的参数。我正在使用 Rails 5.2.1 和 Ruby 2.5。 我不确定我到底哪里出了问题。我尝试了 site
我正在尝试呈现表单并将 url 和方法传递给它 home/index.html.erb 游乐设施/_form.html.erb 错误: undefined local variable or me
我刚刚从 Rails 5.1 升级到 5.2。我对已投入生产几个月没有问题的应用进行了良好的测试覆盖。 我在 Rails 5.1 中使用 form_with 几个月了。 form_with 的默认设置
Rails 5.1.2: 我正在尝试使用 form_with 创建 AJAX 表单符合Rails documentation和 this GitHub thread . 这段代码: 事实上这段代码
我是一名优秀的程序员,十分优秀!