最近学习Django,但是生成的数据库在视图调用时提示找不到?但是在数据库中确实能看到生成迁移的数据表
#views.py
def index(request):
type_list = Product.objects.values('type').distinct()
name_list = Product.objects.values('name', 'type')
context = {'title': '首页', 'type_list': type_list, 'name_list': name_list}
return render(request, 'index.html', context=context, status=200)