摘要:
django 关于model id:Automatic primary key fieldsBy default, Django gives each model the following field:id = models.AutoField(primary_key=True)This is an auto-incrementing primary key.If you’d like to specify a custom primary key, just specify primary_key=True on one of your fields. If Django sees you 阅读全文