如何在表单中使用 Active Record 枚举单选按钮?

Posted

技术标签:

【中文标题】如何在表单中使用 Active Record 枚举单选按钮?【英文标题】:How do you use Active Record Enum Radio Buttons in a form? 【发布时间】:2014-09-23 23:08:42 【问题描述】:

在我的应用程序中,有一个关于文章的评论部分。我希望用户能够使用 3 个不同的选项进行评论。为了激活它,我使用了一个 Active Record 枚举。请注意,评论部分嵌套在文章下方。

resources :articles, only: [:index, :show] do
  resources :comments
end

迁移:

class AddEnumToCommentModel < ActiveRecord::Migration
  def change
    add_column :comments, :post_as, :integer, default: 0
  end
end

评论模型:

enum post_as: %w(username, oneliner, anonymous)

我试图将其添加到内容视图中,但失败了。我猜我也必须在我的控制器中做一些事情,但不确定。

尝试的视图:

<%= form_for([@article, @comment]) do |f| %>
  <% if @comment.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@comment.errors.count, "error") %> prohibited this comment from being saved:</h2>

      <ul>
      <% @comment.errors.full_messages.each do |message| %>
        <li><%= message %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <h3>Fill in your comment</h3>
    <%= f.label :content %><br>
    <%= f.text_area :content %>
  </div>

  <div class="post_as">
    <h3> Choose how you want to post your comment :</h3>
    <%= f.input :content, post_as: ???, as: :radio %>
  </div>

  <br>

  <div class="actions">
    <%= f.submit %>
  </div>

  <br>
<% end %>

【问题讨论】:

【参考方案1】:

Rails 在使用枚举时使用复数属性名称创建类方法。该方法返回您定义的字符串的键值对以及它们映射到的整数。所以,你可以这样做:

<% Comment.post_as.keys.each do |post_as| %>
  <%= f.radio_button :post_as, post_as %>
  <%= f.label post_as.to_sym %>
<% end %>

【讨论】:

【参考方案2】:

xxyyxx's 答案的补充,如果您希望标签也可点击:

<% Comment.post_as.keys.each do |post_as| %>
  <%= f.radio_button :post_as, post_as %>
  <%= f.label "#:post_as_#post_as.parameterize.underscore", post_as %>
<% end %>

【讨论】:

【参考方案3】:

还有collection_radio_buttons,比其他选项更简洁。

<%= f.collection_radio_buttons :post_as, Comment.post_as, :second, :first %>

最后两个参数指定如何获取输入的值和标签文本。在您的示例中,Comment.post_as 将枚举键名称的哈希值生成到底层整数,因此我们可以使用 :second 作为整数和 :first 作为名称来获取那些 - 简单!

这是产生的结果:

<input type="radio" value="0" name="comment[post_as]" id="comment_post_as_0">
<label for="comment_post_as_0">username</label>
# Etc.

您还可以通过传递一个块来自定义 html,这是我创建带有可点击标签的枚举单选按钮的首选方式:

<%= f.collection_radio_buttons :post_as, Comment.post_as, :second, :first do |b|
  b.label  b.radio_button + b.text 
end %>

【讨论】:

【参考方案4】:

在视图中而不是

<%= f.input :content, post_as: ???, as: :radio %>

你可以有

<%= f.radio_button(:post_as, "username") %>
<%= label(:post_as, "Username") %>
<%= f.radio_button(:post_as, "oneliner") %>
<%= label(:post_as, "Oneline") %>
<%= f.radio_button(:post_as, "anonymous") %>
<%= label(:post_as, "Anonymous") %>

来源:http://guides.rubyonrails.org/form_helpers.html#radio-buttons

【讨论】:

以上是关于如何在表单中使用 Active Record 枚举单选按钮?的主要内容,如果未能解决你的问题,请参考以下文章

Ruby on Rails。如何在 :belongs to 关系中使用 Active Record .build 方法?

如何使用 Active Record 查找具有重复数据的记录

如何使用 Active Record 回滚特定数据库

如何更改 Rails 中 Active Record 的默认时区?

如何通过Active Record计算数据库中的所有对象

如何在 CI Active Record 中按 MAX 日期选择