码迷,mamicode.com
首页 > 其他好文 > 详细

[django]详情页列表页

时间:2018-09-18 11:10:27      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:投票   cas   htm   shortcut   har   类别   tail   djang   ext   

详情页列表页

技术分享图片

技术分享图片

技术分享图片

列表页展示titile--这个模型的部分字段
详情页展示这个模型的所有字段

我想看下related_name这个从主表取子表数据

取数据--官网投票例子

https://docs.djangoproject.com/en/2.1/intro/tutorial02/

polls/models.py
from django.db import models


class Question(models.Model):
    question_text = models.CharField(max_length=200)
    pub_date = models.DateTimeField('date published')


class Choice(models.Model):
    question = models.ForeignKey(Question, on_delete=models.CASCADE)
    choice_text = models.CharField(max_length=200)
    votes = models.IntegerField(default=0)
polls/views.py
from django.shortcuts import get_object_or_404, render

from .models import Question
# ...
def detail(request, question_id):
    question = get_object_or_404(Question, pk=question_id)
    return render(request, 'polls/detail.html', {'question': question})

技术分享图片

类别 tag 文章/出版社 作者 图书

技术分享图片

技术分享图片

小结

url
    列表/详情
        1.(文章)一个model情况
view
    列表/详情
        1.(文章)一个model情况
            问题: titile
            选项: choice: get_object_or_404
        2.问题选项.(主表.次表_set)
model
    related_name

[django]详情页列表页

标签:投票   cas   htm   shortcut   har   类别   tail   djang   ext   

原文地址:https://www.cnblogs.com/iiiiiher/p/9667172.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!