所以我看到了一些类似的帖子,但没有我能找到Rails。我的问题类似于:保持一个选择框选中后提交和答案是好的,我想做什么,除了是PHP。
所有我想做的是在用户选择过滤器选项并重新加载最后选择的选项后保持选中,而不是去到默认值,这是所有的时刻。我正在使用Rails,我有Ajax和jQuery作为可行的选择来做到这一点。现在页面重新加载和过滤的所有作品,但我只是想选择的选项保持选择后重新加载。我希望只是重新加载我的表与Ajax的信息的一部分,但我认为这将超出我的头。
My Table with options(是的,我知道这很乱,我是web应用程序的新手,所以如果有任何不相关的建议,我是开放的):
<html>
<table class= "table table-bordered"%>
<thead>
<tr>
<th>Status:</th>
<th>Clec ID:</th>
<th>Task ID:</th>
<th>Task Type:</th>
<th>Hostname:</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<form action="/task_queues" method="GET">
<td>
<select name="by_status">
<option value="">All</option>
<option value="Completed">Completed</option>
<option value="Pending">Pending</option>
<option value="Failed">Failed</option>
</select>
</td>
<td>
<select name="by_clecid">
<option value="">All</option>
<% @clecids.each do |clecid| %><option value="<%= clecid %>"><%= clecid %></option><% end %>
</select>
</td>
<td>
<select name="by_taskid">
<option value="">All</option>
<% @taskids.each do |taskid| %><option value="<%= taskid %>"><%= taskid %></option><% end %>
</select>
</td>
<td>
<select name="by_tasktype">
<option value="">All</option>
<% @tasktypes.each do |tasktype| %><option value="<%= tasktype %>"><%= tasktype %></option><% end %>
</select>
</td>
<td>
<select name="by_hostname">
<option value="">All</option>
<% @hostnames.each do |hostname| %><option value="<%= hostname %>"><%= hostname %></option><% end %>
</select>
</td>
<td><input type="submit"/>
</td>
</form>
</tr>
</tbody>
</table>
PHP的答案:(我也不关心这个,因为他生成的选项)
<select name="test">
<?php
$options = array(1 => 'Option 1', 2 => 'Option 2', 3 => 'Option 3');
foreach ($options as $key => $value) {
echo '<option value="' . $key . '"' . ($key == $_GET["test"] ? ' selected="selected"' : '') . '>' . $value . '</option>';
} ?>
</select>
我也怀疑你们是否需要看到这些,但这里有一些控制器,希望能让你们理解我的混乱:
class TaskQueuesController < ApplicationController
before_action :set_task_queue, only: [:show, :edit, :update, :destroy]
has_scope :by_status, :by_tasktype, :by_taskid, :by_hostname, :by_clecid
def index
@task_queues = apply_scopes(TaskQueue).all
@task_queues = @task_queues.paginate(:page => params[:page], :per_page => 30)
@clecids = TaskQueue.uniq.pluck(:clecid).sort
@taskids = TaskQueue.uniq.pluck(:taskid).sort
@tasktypes = TaskQueue.uniq.pluck(:tasktype).sort
@hostnames = TaskQueue.uniq.pluck(:hostname).reject!(&:blank?)
end
任何帮助都将非常感激!
根据你的代码,我添加了rails代码。
<html>
<table class= "table table-bordered"%>
<thead>
<tr>
<th>Status:</th>
<th>Clec ID:</th>
<th>Task ID:</th>
<th>Task Type:</th>
<th>Hostname:</th>
</tr>
</thead>
<tbody>
<tr>
<form action="/task_queues" method="GET">
<td>
<select name="by_status">
<option value="">All</option>
<option value="Completed">Completed</option>
<option value="Pending">Pending</option>
<option value="Failed">Failed</option>
</select>
</td>
<td>
<%= select_tag "by_clecid","<option value="0">All</option>"+options_for_select(@clecids.collect {|t| [t.clecid.to_s,t.clecid]}, params[:by_clecid] ) %>
</td>
<td>
<%= select_tag "by_taskid","<option value="0">All</option>"+options_for_select(@taskids.collect {|t| [t.taskid.to_s,t.taskid]}, params[:by_taskid] ) %>
</td>
<td>
<%= select_tag "by_tasktype","<option value="0">All</option>"+options_for_select(@tasktypes.collect {|t| [t.tasktype.to_s,t.tasktype]}, params[:by_tasktype] ) %>
</td>
<td>
<%= select_tag "by_hostname","<option value="0">All</option>"+options_for_select(@hostnames.collect {|t| [t.hostname.to_s,t.hostname]}, params[:by_hostname] ) %>
</td>
<td> <input type="submit"/></td>
</form>
</tr>
</tbody>
</table>
我建议你看看这个例子,在你的组合框上写值,因为我不知道你要传递的是字符串还是整数。
http://jsfiddle.net/ashwyn/yL6w3/1/
请如果代码没有工作写你想要的链接,我发送给你真实的值请
Preston,我将给你一个非常简单的使用rails选择的例子。
表:|people|
|id| |name| |phone
1 ABC 13245
2 DEF 67891
控制器:
def index
@people = Person.all
end
视图:
<% form_tag :controller=>"person",:action=>"index" do %>
<%= select_tag "people",options_for_select(@people.collect {|t| [t.name.to_s,t.id]},params[:people] ) %>
<%= submit_tag "Search", :name => nil %>
<% end %>
如果你使用try传递数字你可以这样:
<% form_tag :controller=>"person",:action=>"index" do %>
<%= select_tag "phone",options_for_select(@people.collect {|t| [t.phone.to_s,t.id]},params[:phone].to_i ) %>
<%= submit_tag "Search", :name => nil %>
<% end %>
无论你使用的是HTML代码还是rails代码