在views.py里面我有这个:
def confirm(request):
item = PurchaseOrder.item_number # I want to have the primary key in here and this is wrong
return HttpResponse('test successful')
在models.py里面我有这个:
from django.db import models
class PurchaseOrder(models.Model):
item_number = models.AutoField(primary_key=True)
我怎样才能做到这一点,以便该项目将调用 PurchaseOrder 的主键?我必须从models.py 导入文件吗?我很抱歉,我对 Django 很陌生,在这方面找不到任何东西。