django在同步models时候会自动为每个表创建1个id字段==pk字段。
如下:Question表中只有一条数据。
从表中取数据,如果有则取出;无则激起django自带404.如下:
from polls.models import Question from django.shortcuts import render,get_object_or_404
时间: 2024-12-25 07:58:45
django在同步models时候会自动为每个表创建1个id字段==pk字段。
如下:Question表中只有一条数据。
从表中取数据,如果有则取出;无则激起django自带404.如下:
from polls.models import Question from django.shortcuts import render,get_object_or_404