我目前正在开展第一个RoR项目。现在我想在我的应用程序中集成一个喜欢/不喜欢的系统。我有一些代码,但它只在重新加载页面时才有效。我的目标是能够在不重新加载页面的情况下喜欢/不喜欢帖子(使用Ajax,而不是内置的)。那么,这是我的代码,这里有什么问题?
我的控制器
def like
@post=Post.find(params[:id])
@post.increment!(:like)
render :nothing => true, :status => 200
end
def dislike
@post=Post.find(params[:id])
@post.increment!(:dislike)
render :nothing => true, :status => 200
end
我的观点
<table>
<% if @post.count!=0 %>
<% @post.each do |p| %>
<%if !p.text.nil?%>
<tr data-post_id="<%= p.id %>">
<td><b class="margin"><h4><%=p.text%></b></h4></td>
<td>by <%= link_to p.user.username, profile_dashboard_path(p.user) %> </td>
<td><span class="glyphicon glyphicon-thumbs-up likeAction"><%= p.like %> </td>
<td><span class="glyphicon glyphicon-thumbs-down dislikeAction"><%= p.dislike %> </td>
<%end%>
<% end %>
<%else%>
There's no posts yet, but you can add <%=link_to "one", create_a_post_dashboard_path(current_user)%>
<%end%>
</table>
我的js文件,它位于app / assets / javascripts / dashboard.js中,所以我没有任何名为like.js.erb或dislike.js.erb的js文件(我不知道我是不是需要他们)
jQuery(function($) {
$(".likeAction").click(function(){
var current_post_tr = $(this).parents('tr')[0];
$.ajax({
url: 'http://localhost:3000/dashboard/' + $(current_post_tr).attr('data-post_id') +'/like',
type: 'PUT',
success: function(){
$(".likeAction").hide().fadeIn();
location.reload();
}
});
});
$(".dislikeAction").click(function(){
var current_post_tr = $(this).parents('tr')[0];
$.ajax({
url: 'http://localhost:3000/dashboard/' + $(current_post_tr).attr('data-post_id') +'/dislike',
type: 'PUT',
success: function(){
$(".dislikeAction").hide().fadeIn();
location.reload();
}
});
});
});
答案 0 :(得分:0)
success: function(){
$(".dislikeAction").hide().fadeIn();
var dislikes = parseInt($(".dislikeAction").text());
$(".dislikeAction").text(dislikes+1) // similarly for likes
}