更新 ruby​​ on Rails 中的状态

发布于 2024-11-07 03:07:49 字数 778 浏览 0 评论 0原文

我正在使用 AASM gem 来管理我的模型之一的状态。现在,我在 javascript 弹出窗口中使用 form_for 来更改状态,但它不起作用:

<h2>Set the state:</h2>
<%= form_for(@tracker) do |f| %>
  <% if @tracker.errors.any? %>
    <div id="error_explanation">
      <h2>Uh-oh. We've got some problems</h2>
      <% @tracker.errors.full_messages.each do |msg| %>
        <%= msg %><br />
      <% end %>

    </div>
  <% end %>

This tracker is currently: <%= @tracker.state %><br />

<%= select_tag :state, options_for_select(Tracker::STATEDESCRIPTIONS.map { |event| [event.to_s.humanize, event]}) %>
<%= f.submit %>

<% end %>

不过,我真正想做的是将表单全部包含在一个按钮中,但我不确定用什么来做到这一点? button_to

I'm using the AASM gem to manage states on one of my models. Right now, I'm using a form_for in a javascript popup to change the state, but it's not working:

<h2>Set the state:</h2>
<%= form_for(@tracker) do |f| %>
  <% if @tracker.errors.any? %>
    <div id="error_explanation">
      <h2>Uh-oh. We've got some problems</h2>
      <% @tracker.errors.full_messages.each do |msg| %>
        <%= msg %><br />
      <% end %>

    </div>
  <% end %>

This tracker is currently: <%= @tracker.state %><br />

<%= select_tag :state, options_for_select(Tracker::STATEDESCRIPTIONS.map { |event| [event.to_s.humanize, event]}) %>
<%= f.submit %>

<% end %>

What I'd really like to do, though, is contain the form all in a single button, but I'm not sure what to use for that? button_to?

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

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

发布评论

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

评论(1

难如初 2024-11-14 03:07:49

您应该使用 f.select 而不是 select_tag。这样,生成的 select HTML 标记将与 form_for(@tracker) 关联,并且所选状态将正确映射到 @tracker > 在有问题的控制器操作中。

You should use f.select instead of select_tag. That way, the resulting select HTML tag will be associated with the form_for(@tracker), and the chosen state will be correctly mapped to @tracker in the controller action in question.

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