Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.4k views
in Technique[技术] by (71.8m points)

python - Django correct list using article_id

views.py

def article(request, article_id):
return render(request, 'article.html', {
    'article': Article.objects.get(id=article_id)
})

urls.py

from . import views
urlpatterns = [
    path('articles/', views.articles, name='articles'),
    path('articles/<int:article_id>/', views.article, name='article'),
]

article.html

<div class="pagination">
    <a href="#">&laquo;</a>
    <a class="active" href="/articles/{{ article.id }}/">1</a>
    <a href="/articles/{{ article.id }}/">2</a>
    <a href="#">3</a>
    <a href="#">4</a>
    <a href="#">5</a>
    <a href="#">6</a>
    <a href="#">&raquo;</a>
</div>

Someone can tell me how add to pagination list correct article by correct id and last and end article ID in HTML? Thanks a lot


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...