0
我查詢集是目前posts
我認爲值。不過,我想,當用戶導航到new
URL我的查詢集更改爲Post.objects.all().filter(category=category).order_by('-date')
。這裏是我的代碼:如何更改視圖中變量的值?
網址
url(r'^$', boxes_view, name='home'),
url(r'^new/$', boxes_view, name='new'),
意見
def boxes_view(request):
...
posts = Post.objects.all().filter(category=category).annotate(score_diff=F('score__upvotes') - F('score__downvotes')).order_by('-score_diff')
模板
...
<button id="sort_new"><a href="{% url 'new' %}">New</a></button>
是否有可能改變的posts
值通過new
URL會是什麼時候?
這沒有任何意義。你不能有兩個相同的URL。 –
我的錯誤已修復。 – Zorgan