0

これについてはすでに多くのドキュメントがありますが、それらのいずれも私のために機能させることができませんでした。タイトルが示すように、Django Voting を使用して投票数 (高から低) に基づいて並べ替えるオブジェクトのセットを取得しようとしています。これと他のいくつかを試しましたが、実りはありません。

Django Voting を使用すると、ここに URL Conf & HTML があります

#urls.py
url(r'^$', 'questions'),
url(r'^(?P<object_id>\d+)/(?P<direction>up|down|clear)/vote/$', 
        vote_on_object, dict(model = Question, template_object_name = 'question',
        template_name = 'qanda/confirm_vote.html', post_vote_redirect = '/home/', allow_xmlhttprequest=True)),

URLconf の質問は、questions.html をレンダリングする質問ビューにつながります

#questions.html
{% load voting_tags %}
    {% votes_by_user user on the_question as vote_dict %}
    {% scores_for_objects the_question as score_dict %}
        <div class="question">
            {% if the_question %}
        <ul>
            {% for question in the_question %}
               {% dict_entry_for_item question from vote_dict as vote %}
                {% dict_entry_for_item question from score_dict as score %}
           <div class="votearrowdiv">
           <div class="upvotearrow"></div></a>
            <form class="linkvote" id="linkup{{ question.id }}" action="/home/{{ question.id }}/{% if vote and vote.is_upvote %}clear{% else %}up{% endif %}/vote/" method="POST">
                {% csrf_token %}
                <input type="image" id="linkuparrow{{ question.id }}" src="{{ media_url }}img/aup{% if vote and vote.is_upvote %}mod{% else %}grey{% endif %}.png">
            </form>

            <div class="downvotearrow"></div></a>
            <form class="linkvote" id="linkdown{{ question.id  }}" action="/home/{{ question.id }}/{% if vote and vote.is_downvote %}clear{% else %}down{% endif %}/vote/" method="POST">
                {% csrf_token %}
                <input type="image" id="linkdownarrow{{ question.id  }}" src="{{ media_url }}img/adown{% if vote and vote.is_downvote %}mod{% else %}grey{% endif %}.png">
            </form>
            </div>
            <li>
                <div class="votecounter"><div class="numbercount">
                   <span class="score" id="linkscore{{ question_id }}"
                    title="after {{ score.num_votes|default:0 }} vote{{ score.num_votes|default:0|pluralize }}">
                    {{ score.score|default:0 }}
                   </span>
                </div></div>
                <a href="/home/{{ movie.id }}/{{ question.id }}/">{{ question.question_text }}</a>
        {% endfor %}
{% endif %}

これが私の現在の見解です:

#views.py
def questions(request, movie_id):
    p = Movie.objects.get(pk=movie_id)
    k = Question.objects.filter(movie=p).order_by('q_pub_date')
    l = k.reverse()
    return render_to_response('qanda/questions.html', {'movie':p, 'the_question':l}, context_instance = RequestContext(request))

モデルにないため、「スコア」を使用してソートできないことはわかっています。これを正しくソートするには、ビューで何を変更する必要がありますか?

編集:

ロバート、ここに models.py があります。あなたのソリューションといくつかのバリエーションを試しましたが、モデルに投票属性がありません。見てみましょう:

#models.py
class Question(models.Model):
    movie           = models.ForeignKey(Movie, blank=True, null=True)
    question_text   = models.CharField(verbose_name = "Question", max_length = 250)
    question_detail = models.CharField(verbose_name = "Details (Optional)", max_length = 5000, blank = True, null = True)
    q_pub_date      = models.DateTimeField(auto_now_add = True)
    q_author        = models.ForeignKey(User)

洞察はありますか?

4

1 に答える 1

1

を投稿していただけると助かりますmodel.pyが、推測してみます。

まず、これは役立つかもしれません:

#views.py
def questions(request, movie_id):
    p = Movie.objects.get(pk=movie_id)
    k = Question.objects.filter(movie=p).order_by('-q_pub_date')
    ...

(リバースを使用する必要はありません。 で開始できます-)

あなたのスコアは次のようにソートできると思います。

    k = Question.objects.filter(movie=p).order_by('movie__score', '-q_pub_date')

(__二重下線) は、関連するモデルの属性を参照します。

私はこれによって生きて死ぬことが知られています: https://docs.djangoproject.com/en/dev/topics/db/queries/#related-objects

于 2012-11-09T11:46:54.193 に答える