在成功执行Ajax请求进行举动之后,如何在我看来增加总额

在成功执行Ajax请求进行举动之后,如何在我看来增加总额,第1张

在成功执行Ajax请求进行举动之后,如何在我看来增加总额

没有答案对我有用…这就是我最终要做的事情:

事物/show.hmtl.erb:

<div id="<%= thing.name %>"> <%= thing.up_votes.count %> </div><a id="<%= thing.name.downcase %>_link"><%= link_to "upvote", upvote_thing_path(:id => thing.id), remote: true, method: :get %></a><script type="text/javascript">  $("#<%= thing.name.downcase %>_link").click(function () {    $.get( "<%= upvote_thing_path(:id => thing.id) %>", function( data ) {      $('#<%= thing.name %>').html(data + ' %');    });  });</script>

控制器/things_controller.rb

def upvote  @thing = Thing.find(params[:id])  UpVote.create!(ip: request.remote_ip, vanishing: false, voteable_id: params[:id], voteable_type: 'Thing')  redirect_to @thing  render text: @thing.up_votes.count.to_send


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5642471.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存