当我尝试计算
django
中表的行数时,它会显示未解决的属性错误并且不显示消息。
这里的 Item 是包含列的表的名称:
item_id = models.IntegerField()
category = models.CharField(max_length=30)
我在视图中编写的代码:
item_count = Item.objects.count()
context = {
'item_count': item_count
}
return render(request, 'index.html', context)'