简单形式多选

时间:2016-04-19 09:36:57

标签: ruby-on-rails

我在数组中搜索选择nimulti数字的解决方案(如数独), 我创建了一个simple_form但chekbox和单选按钮不起作用。 我的模态(仅适用于一个案例)是:

<%= simple_form_for @sudoku do |f| %>
  <ul>
    <% (1..9).each do |x| %>
      <li>
       <%= f.input :number, label: x %>
      </li>
    <% end %>
   </ul>
    <%= f.button :submit %>
<% end %>

在我的数据库中,数独:数字是一种刺痛 在我的控制器中我只是:  验证:数字,存在:真,数字:{only_integer:true}。

我有输入,而不是数字选择。如果我使用复选框,它们无法使用我的数据库编号。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我已经解决了问题的第一方,

我有一张漂亮的号码检查:

// get the current process
Process currentProcess = System.Diagnostics.Process.GetCurrentProcess();

// get the physical mem usage
long totalBytesOfMemoryUsed = currentProcess.WorkingSet64;

但我没有解决我的多重选择问题..

如果我添加:

{{1}}

我遇到了这个回滚问题:

SudokusController处理#create as HTML   参数:{&#34; utf8&#34; =&gt;&#34;✓&#34;,&#34; authenticity_token&#34; =&gt;&#34; Cw /......&#34 ;,&#34;数独&#34; =&gt; {&#34;数字&#34; =&gt; [&#34; 1&#34;]},&#34;提交&#34; =&gt;&# 34;提交&#34;} 未允许的参数:数字

如果你有解决方案......我很好!!!!

由于