如何根据选项显示文本数组?

时间:2015-01-28 16:53:38

标签: javascript ruby-on-rails ruby ruby-on-rails-3 ruby-on-rails-4

我正在尝试根据选中的复选框显示文字。

我有3个州,所以当我选中一个或两个复选框时会显示我选择的选项而不是javascript。

例如:

if I check1 will show me the text active.
if I check2 will show me the text inactive.
if I check3 will show me the text inactive and active.
if I check1 and check 2 will show me the text "active","inactive".
if I check1 and check 2 will show me the text "active","removed".
if I check1 and check 2 will show me the text "removed","inactive".

根据选中的复选框保留文字。

这是控制器:

@search_state = params[:search_state]
@people = Person.all

以下是观点:

<%= form_tag(people_path,:method => "get") do %>
 #### BEGIN CHECKBOX #####
 <% if @search_state.blank? %> 
   Check1 <%= check_box_tag "search_state[]", "0" %>
   Check2 <%= check_box_tag "search_state[]", "1" %>
   Check3 <%= check_box_tag "search_state[]", "2" %>
 <% else %>
   Check1 <%= check_box_tag "search_state[]", "0", @search_state.collect(&:to_i).include?(0) %>
   Check2 <%= check_box_tag "search_state[]", "1", @search_state.collect(&:to_i).include?(1) %>
   Check3 <%= check_box_tag "search_state[]", "2", @search_state.collect(&:to_i).include?(2) %>
 <% end %>
  #### END CHECKBOX ####

 ### WANT TO SHOW A TEXT ACCORDING CHECKBOXES SELECTED ###
   <% if @search_state.to_s=="0"%>
     Active
   <% elsif @search_state.to_s=="1"%>
     Inactive
   <% elsif @search_state.to_s=="2" %>
     Removed
   <% elsif @search_state.to_s==["0","1"] %>
     Active,Inactive
   <% elsif @search_state.to_s==["0","2"] %>
     Active,Removed
   <% elsif @search_state.to_s==["1","2"] %>
     Inactive,Removed
   <% elsif @search_state.to_s==["0","1","2"] %>
     Active,Inactive,Removed
   <% end %>
   ### END WANTTO SHOW A TEXT ACCORDING CHECKBOXES SELECTED ### 
 <% end %>

以下是文件和演示:

http://runnable.com/VMkReiHVr0FbfQKN/checkbox-project-test-for-ruby-on-rails
http://runnable.com/VMkRe1xPNqFWSMtd/output

我的代码太长了,我认为这不是正确的做法。

例如在这种情况下,我有3个状态,如果我有更多的状态将会太长而且令人困惑。

有人可以帮我在轨道上使用ruby制作几行代码复选框吗?

我知道使用Javascript是解决方案,但这是唯一可以解决的方法,请问解决方案是什么?

我真的很感激所有的帮助。

1 个答案:

答案 0 :(得分:2)

我很难从你的例子中了解你打算做什么。但我认为你的意思是按钮1是“活动”,按钮2是“非活动”,按钮3是“删除”。此外,我认为您打算没有选项互相排斥......特别是,您可以同时检查“活动”和“非活动”。您还暗示将来可能会有更多类似的复选框。

如果一切正确,那么我同意,你现在的做法根本不会很好。

我不会尝试根据复杂的标准选择完整的消息,而是重构它以从其组件中构建消息。沿着这些方向的东西可以带你去那里:

  flags = []
  flags << 'Active' if @search_state.collect(&:to_i).include?(0)
  flags << 'Inactive' if @search_state.collect(&:to_i).include?(1)
  flags << 'Removed' if @search_state.collect(&:to_i).include?(2)

  puts flags.join(', ')

FWIW,如果您没有理由给所有复选框指定相同的名称和不同的值,我会给每个复选框一个不同的名称。这将使您的许多代码更加简单。这些方面的东西:

   Check1 <%= check_box_tag "search_active", "1", @search_active == 1) %> Active
   Check2 <%= check_box_tag "search_inactive", "1", @search_inactive == 1) %> Inactive
   Check3 <%= check_box_tag "search_removed", "1", @search_removed == 1) %> Removed

如果你真的需要它们在数组中,你可以稍后将它们加在一起就足够了。