gpt4 book ai didi

jquery - 在 Rails 中使用 AJAX

转载 作者:行者123 更新时间:2023-12-01 05:51:44 26 4
gpt4 key购买 nike

我已经完成了在 Ruby on Rails 中编写的搜索应用程序。但现在我需要使用 AJAX 来访问它,以便搜索操作不会重新加载新页面。这是 application.js 文件:

//= require jquery
//= require jquery_ujs
//= require turbolinks
//= require_tree .

$(function(){
$("#autoc").submit(function(){
$.get(this.action, $this.serialize(),null,"script")
return false;
});
});

这是查看页面:

<h4>Results for your search.</h4>
<br>
<br>

<div id="container">
<% if !(@results.nil?)%>

<% for prod in @results %>
<div class="product">
<div class="image"><%= image_tag(prod.image, :alt => "logo", :size => "75x75") %> </div>
<div class="name"><h3> <%= prod.name %> </h3></div>
<div class="price"><h5>Old Price:</h5><%= prod.maxprice%></div>
<div class="price"> <h5>New Price:</h5><%= (prod.maxprice)-(prod.maxprice * prod.discount / 100) %></div>
</div>
<% end %>
<% else %>
<div class="notice"><%= flash[:alert] %></div>
<% end %>
</div>

这是我的 Controller 代码:

def index
@init = Sunspot.search(Clothes) do
paginate :page => params[:page], :per_page => 24
order_by :maxprice
end
@first = @init.results
end

def show
if params[:name] == ""
@search = []
else
@search = Sunspot.search(Clothes) do
fulltext params[:name]
paginate :page => params[:page], :per_page => 24
order_by :maxprice
end
@results = @search.results
end
flash[:notice] = "Enter something!"
end

def autocomplete
list=[]
@res = Clothes.search do
fulltext params[:term]
paginate :page => 1, :per_page => 100
order_by :maxprice
end
@rest = @res.results
@rest.each do |brand|
list << {"label"=>brand.name, "value"=>brand.name, "id"=>brand.id}
end
respond_to do |format|
format.json{render :json=>list.to_json, :layout=>false}
end
end

最佳答案

您只需设置remote: true即可启用ajax。

提供更多引用here .

关于jquery - 在 Rails 中使用 AJAX,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21377397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com