中间一大波重复的,有办法精简吗?
def index(request):
return HttpResponse("hello world")
#软件页面
def software(request):
soft=SoftWare.objects.all()
content = {'soft':soft}
return render(request,'soft_index.html',content)
#软件内容页面
def software_detail(request,software_id):
soft= SoftWare.objects.get(id=str(software_id))
content = {'soft':soft}
return render(request,'soft_detail.html',content)
#博客首页
def blog(request):
post = Article.objects.all()
content ={'post':post}
return render(request,'blog_index.html',content)
#博客内容页面
def blog_detail(request,blog_id):
post= Article.objects.get(id=str(blog_id))
content = {'post':post}
return render(request,'blog_detail.html',content)
#脚本首页
def bash(request):
bash = Bash.objects.all()
content ={'bash':bash}
return render(request,'bash_index.html',content)
#脚本内容页面
def bash_detail(request,blog_id):
bash= Article.objects.get(id=str(blog_id))
content = {'bash':bash}
return render(request,'bash_detail.html',content)
#视频首页
def video(request):
post = Video.objects.all()
content ={'video':video}
return render(request,'video_index.html',content)
#视频内容页面
def video_detail(request,blog_id):
post= Video.objects.get(id=str(blog_id))
content = {'video':video}
return render(request,'video_detail.html',content)
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.