摘要: class Book(models.Model): title=models.CharField(max_length=32) # 书籍与出版社: 一对多 publisher=models.ForeignKey(to="Publish",to_field="id") # 与这本书关联的出版社对象,因 阅读全文
posted @ 2017-11-23 10:23 jing_1 阅读(4152) 评论(1) 推荐(1) 编辑