我的 rails 3 应用程序中有一个搜索表单。此表单有一些下拉菜单,用于设置不同的搜索条件。然后,表单会根据选择的内容搜索名为“item”的模型。这会导致创建和分页的项目列表。这是我使用的原始表单标签:
<%= form_tag("", :method => "post") do %>
然后我想将一个“ajax”侦听器附加到一个下拉菜单(以影响另一个下拉菜单),我仍然想使用没有 ajax 的 POST 提交表单的其余部分(用于“正常”搜索)。ajax 部分仅用于显示不同的搜索条件。我试过这个表单标签:
<%= form_for(:itemsbylocation, :remote => true) do |f| %>
不幸的是,这破坏了表单中的某些内容......我无法再使用 POST 提交它。虽然它触发了一个简单的 javascript(来自 js 模板),但它只会发出警报。
所以.. 该表单最初是一个使用 POST 的简单表单,没有 ajax,而且效果很好。然后我想要 ajax 用于表单的一小部分,只是一个或两个下拉列表,所以我尝试使用“远程”的另一种类型的表单。我仍然想主要搜索(项目)以使用 POST(无 Ajax)....在这种情况下有人有任何提示吗?提前致谢!
编辑
我决定绕过rails ajax“远程”方式为我的下拉表单,即我不使用“远程”,我什至不使用表单。这样做可能会有一些缺点......比如安全问题?但它对我有用。我刚刚将这个 javascript(监听器)代码(见下文)添加到通用 javascript 中。我添加了一个新的控制器操作(categories/category_changed)、一个路由和一个 js 模板。在 javascript 视图中,我可以根据需要操作下拉菜单。...
$("#type").change(function(){
var catValue = $(this).val();
var formaction = "/categories/category_changed/"+catValue;
args = "id="+catValue;
$.ajax({
type: "GET",
url: formaction,
data: args,
dataType: "script"
})
});
...
编辑结束
一些代码...
部分:
<%= form_for(:itemsbylocation, :remote => true) do |f| %>
<label class="left search" for="search-inp">
<%= f.text_field :searchstr %>
</label>
<select class="custom" id="type" name="cat">
<option value=''>Choose category</option>
<% @super_categories.each do |supercat| %>
<option class="optgroup"><%= supercat.name %></option>
<% supercat.category.each do |cat| %>
<option <%= highlight_if_selected params[:cat], cat.id %> value='<%= cat.id %>'><%= cat.name %></option>
<% end %>
<% end %>
</select>
<select name="loc" class="custom">
<option value=''>Choose location</option>
<% @locations.each do |location| %>
<option <%= highlight_if_selected @selected_location, location.id %>
value='<%= location.id
%>'><%= location.name %></option>
<% end %>
</select>
<div class="clr h-small"></div>
<div id="buttonset">
<input type="checkbox"
<% if get_mode(params,
@modes['sell']) %>
checked="checked" <% end %>
value="<%= @modes['sell'] %>" name="mode_id_<%= @modes['sell'] %>" id="search-1" class="checkbox" />
<label class="checkbox" for="search-1">Selling</label>
<input type="checkbox" <% if get_mode(params,
@modes['buy']) %>
checked="checked" <% end %>
value="<%= @modes['buy'] %>" name="mode_id_<%= @modes['buy'] %>" id="search-2" class="checkbox" />
<label class="checkbox" for="search-2">Buying</label>
<input type="checkbox" <% if get_mode(params,
@modes['to_rent']) %>
checked="checked" <% end %>
value="<%= @modes['to_rent'] %>" name="mode_id_<%= @modes['to_rent'] %>" id="search-3" class="checkbox" />
<label class="checkbox"
for="search-3">Renting</label>
<input type="checkbox" <% if get_mode(params,
@modes['wish_to_rent']) %>
checked="checked" <% end %>
value="<%= @modes['wish_to_rent'] %>" name="mode_id_<%= @modes['wish_to_rent'] %>" id="search-4" class="checkbox" />
<label class="checkbox"
for="search-4">Wish to rent</label>
</div>
<!-- input type="submit" class="btn
search-btn" value="Search" / -->
<%= f.submit %>
</div>
<% end %> <!-- form -->
控制器(js模板只包含一个警报):
# GET /items/1
# GET /items/1.json
def list
@selected_location = (params[:loc]) ? params[:loc] : params[:id]
@items = Item.search_items(@selected_location, params[:page])
@modes = Mode.modes_for_search
@super_categories = Supercategory.find(:all)
@locations = Location.locations
@subcategories = Subcategory.where(:category_id => params[:cat]).order("name")
@has_price_info = true # look up based on category id
@show_images=true # look up in params or in user session
respond_to do |format|
format.html # list.html.erb
format.json { render json: @items }
format.js
end
end