最近正在研究这个,所以我想我会提供一个解决方案。首先,我使用的是 RateIt,我发现它的设置非常简单,使用起来也非常直观(将 RateIt*.js
和.*css
文件添加到您的base.html
模板中):
http://www.radioactivethinking.com/rateit/example/example.htm
以下是我的解决方案的关键部分:
网址.py
url(r'^object/rate/$', RateMyObjectView.as_view(), name='rate_my_object_view'),
my_template.html
<div class="rateit" data-rateit-resetable="false">Rate it!</div>
ajax.js
$('.rateit').bind('click', function(e) {
e.preventDefault();
var ri = $(this);
var value = ri.rateit('value');
var object_id = ri.data('object_id');
$.ajax({
url: '/object/rate/?xhr',
data: {
object_id: object_id,
value: value
},
type: 'post',
success: function(data, response) {
console.log("ajax call succeeded!");
},
error: function(data, response) {
console.log("ajax call failed!");
}
});
});
一些视图位来自 James Bennett(xhr
例如,设置):
http://www.b-list.org/weblog/2006/jul/31/django-tips-simple-ajax-example-part-1/
视图.py
from django.views.generic.base import View
from .models import MyObject
class RateMyObjectView(View):
def post(self, request):
my_object = MyObject.objects.all().last()
xhr = 'xhr' in request.GET
star_value = request.POST.get('value', '')
my_object.score = star_value
my_object.save()
response_data = {
'message': 'value of star rating:',
'value': star_value
}
if xhr and star_value:
response_data.update({'success': True})
else:
response_data.update({'success': False})
if xhr:
return HttpResponse(json.dumps(response_data), content_type="application/json")
return render_to_response(self.template_name, response_data)
模型.py
from django.db import models
class MyObject(models.Model)
score = models.FloatField(max_length=1, default=0)
请记住,这是一个幼稚的解决方案,它只是替换对象列表中最后一项中的当前星级。这并不理想,因为最好将分数存储为自己的模型并链接到对象。这是你可以存储它们并进行平均等计算。我现在正在处理这个问题,完成后会更新这个答案。