本文介绍了ManyToOneRel和ForeignKey之间的区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在django中,ManyToOneRel和ForeignKey字段之间有什么区别?
In django, what's the difference between a ManyToOneRel and a ForeignKey field?
推荐答案
ManyToOneRel
不是 django.db.models.fields.Field
,它是在Django内部使用的类,但不在用户代码中使用。
ManyToOneRel
is not a django.db.models.fields.Field
, it is a class that is used inside Django but not in the user code.
这篇关于ManyToOneRel和ForeignKey之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!