我按照tangowithdjango中的说明添加“' like'按钮进入我的论坛应用程序。
html文件和javascript:
<script>
$(document).ready(function(){
$("#upvote").click(function(){
var postid;
postid = $(this).attr("data-r-id");
$.get('/upvote/', {post_id: postid}, function(data){
$('#like_count').html(data);
});
});
});
</script>
&#13;
<a id="upvote" data-r-id="{{r.id}}" class="label-info label pull-right">赞<div id="like_count">{{r.upvotes}}</div></a>
&#13;
views.py
def upvote(request):
post_id = None
if request.method == 'GET':
post_id = request.GET['post_id']
votes = 0
if post_id:
p = post.objects.get(id=post_id)
if p :
votes = p.upvotes + 1
p.upvotes = votes
p.save()
return HttpResponse(votes)
urls.py
urlpatterns = patterns(
url(r'^upvote/$', 'upvote', name='upvote'),
)
单击#upvote按钮时,#like_count增加1。但是,它只适用于第一篇文章。如果我点击其他帖子,我根本没有回复。
答案 0 :(得分:3)
我建议您将upvote
作为类而不是id,因为id指的是文档中的唯一元素。
$(document).ready(function(){
$(".upvote").click(function(){
var postid;
postid = $(this).attr("data-r-id");
$.get('/upvote/', {post_id: postid}, function(data){
$('#like-count-' + postid).html(data);
});
});
});
你的html应该是,
<a data-r-id="{{r.id}}" class="label-info label pull-right upvote">赞<div id="like-count-{{r.id}}">{{r.upvotes}}</div></a>