我正在努力学习django和更多。 计算磁带中每个帖子的计数数量都有问题。问题是我无法获得帖子的身份。 如果我刷新页面,喜欢的数量会发生变化。但是用ajax改变它是真正的问题。 如果点击按钮,请解释我如何更换磁带中的每个帖子。
Ajax代码。
{% block jquery %}
function updatePostLikesCount(){
var postlikescount = $(".post-likes-count")
$.ajax({
type: "GET",
url: "/like_post/{{ post.id }}/post_likes_count/",
success: function(data){
postlikescount.html(data.count);
},
error: function(response, error){
}
})
}
$(".post-like").click(function(event){
var img = $(this);
event.preventDefault();
$.ajax({
url: img.parent().attr('href'),
success: function(){
updatePostLikesCount();
},
error: function(response, error){
}
})
});
{% endblock %}
这是帖子的磁带。
{% for post in tape %}
...
{{ post.text }}
...
<a href="/like_post/{{ post.id }}/">
<img class="post-like" src="{% static "" %}"/>
</a>
<span class="post-likes-count" >
{{ post.like.liked_users.count }}
</span>
{% endfor %}
这是一个计算帖子喜欢的视图
def post_likes_count(request, post_id, *args, **kwargs):
if request.is_ajax():
like = Like.objects.get(post_id=post_id)
if like.liked_users.count == None:
count = 0
else:
count = LikeTimestamp.objects.filter(like_id=like.id).count()
return JsonResponse({
'count': count,
})
else:
raise Http404
否则我试图用喜欢重新加载页面元素,但被击败: - )
答案 0 :(得分:1)
<强>更新强>
{% block jquery %}
function updatePostLikesCount(postlikescount){
$.ajax({
type: "GET",
url: "/like_post/"+postlikescount.data().id+"/post_likes_count/",
success: function(data){
alert('class is '+postlikescount.parent().find('.post-likes-count').attr('class'));
postlikescount.parent().find('.post-likes-count').html(data.count).show();
alert('likes count '+data.count);
},
error: function(response, error){
}
})
}
$(".post-like").click(function(event){
var img = $(this);
event.preventDefault();
$.ajax({
url: img.parent().attr('href'),
success: function(){
var like = img.parent();
updatePostLikesCount(like);
},
error: function(response, error){
}
})
});
{% endblock %}
稍微更改视图(添加data-id):
{% for post in tape %}
...
{{ post.text }}
...
<a href="/like_post/{{ post.id }}/" data-id="{{post.id}}">
<img class="post-like" src="{% static "" %}"/>
</a>
<span class="post-likes-count" {% if post.like.liked_users.count == 0 %}style="display:none;"{% endif %}>
{{ post.like.liked_users.count }}
</span>
{% endfor %}
答案 1 :(得分:0)
改善这一点的一些方法。
首先......你总是希望计数的html存在,并且只有在没有喜欢或显示为零时才应隐藏它。否则你需要在第一次投票时添加带有javascript的html
下一步
var postlikescount = $(".post-likes-count");
这将包括页面中该类的所有元素....而不是您单击按钮时所需的特定元素。
相反,你可以将你想要的那个作为参数传递给updatePostLikesCount()
更改
function updatePostLikesCount(){
var postlikescount = $(".post-likes-count");
到
function updatePostLikesCount(postlikescount){
在点击处理程序修改中,我们传入适当的元素
success: function() {
// which count element
var $countElement = img.next();
// pass to function
updatePostLikesCount($countElement);
}