Django ModelForm has no model class specified

后端 未结 9 759
误落风尘
误落风尘 2021-02-02 08:36

I am trying to use ModelForm:

from django.db import models
from django.forms import ModelForm

class Car(models.Model):
    carnumber = models.CharField(max_leng         


        
9条回答
  •  甜味超标
    2021-02-02 09:17

    If this is a copy and past, you have a typo. I would highly recommend you use an IDE or something with error checking. Eclipse is what I use. It will save you a ton of time from little annoyances like this.

    class PickForm(ModelForm):
        class Meta:
            Model = Car`
    

    Your typo is right on the end of Car. The little apostrophe thing.

提交回复
热议问题