我的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用于表单的一小部分,只需要一个或两个下拉列表,所以我尝试了使用“remote”的另一种形式。我仍然希望主要搜索(对于项目)使用POST(没有Ajax).... 在这种情况下有没有人有任何提示? 提前谢谢!
修改
我决定绕过导轨ajax“远程”方式为我的下拉列表,即我不使用“远程”,我甚至不使用表格。这样做可能会有一些缺点......就像安全问题一样?但它对我有用。我刚刚将这个javascript(监听器)代码(见下文)添加到一般的javascript中。我添加了一个新的控制器操作(categories / category_changed),一个路由和一个js-template。在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
答案 0 :(得分:0)
我找到了解决问题的方法,请参阅“编辑”部分。