12345678910 |
- from django.shortcuts import render
- from django.http import HttpResponse
- from .models import ArticlePost
- # 视图函数
- def article_list(request):
- articles = ArticlePost.objects.all()
- context = {'articles': articles}
- return render(request, 'article/list.html', context)
|