问题遇到的现象和发生背景
我想从mysql中提取数据到django中
from django.shortcuts import render
from app01 import models
def depart_list(request):
'''部门列表'''
abc = models.Department.object.all()
return render(request, 'depart_list.html', {"abc": abc})
遇到的现象和发生背景,请写出第一个错误信息
但是在pycharm中我打objects时没有提示,也没获取到数据
我尝试找其他错误,但是应该不是,我觉的是objects这个失效了