将数据传递给控制器​​方法的 Rails 方式是什么?

发布于 2024-12-17 16:00:26 字数 531 浏览 0 评论 0原文

从 API 获取一些数据后,我过滤了结果并将其显示在视图上,以便用户选择要保存到数据库的数据。一旦所有数据都来自 API,用户就无需填写任何内容。

我的问题是:将所有这些数据传递到控制器的最佳方式/导轨方式是什么?

现在我正在使用带有隐藏字段的表单。它有效,但我想知道这是否是最好的方法。

这是我的“form_for”的样子:

<%= form_for (@new_photoset) do |f| %>
  <%= f.hidden_field :id, :value => not_imported_set.id %>
  <%= f.hidden_field :name, :value => not_imported_set.name %>
  <%= f.hidden_field :thumb_url, :value => not_imported_set.url) %>
  <%= f.submit "Import" %>
<% end %>

After getting some data from an API, I filtered the results and showed them on a view to et the user select which data he wants to save to the database. The user doesn't have to fill anything once all the data came from the API.

My question is: what's the best way/rails way to pass all this data to the controller?

Right now I'm using a form with hidden fields. It works but I was wondering if that's the best way.

Here's how my 'form_for' looks like:

<%= form_for (@new_photoset) do |f| %>
  <%= f.hidden_field :id, :value => not_imported_set.id %>
  <%= f.hidden_field :name, :value => not_imported_set.name %>
  <%= f.hidden_field :thumb_url, :value => not_imported_set.url) %>
  <%= f.submit "Import" %>
<% end %>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

流年已逝 2024-12-24 16:00:26

我相信你走在正确的轨道上,这是你通常在 Rails 中执行此操作的方式。

I believe you're on the right track, this is way you would normally do this in rails.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文