Django教程 - 模型说明

时间:2014-10-16 07:03:20

标签: python django django-models

在网址中:

https://docs.djangoproject.com/en/dev/intro/tutorial01/#playing-with-the-api

我无法理解这一行:

# Display any choices from the related object set -- none so far.
>>> q.choice_set.all()

q是Question的一个实例,没有我们定义属性choice_set的地方,那么它是如何工作的呢?

1 个答案:

答案 0 :(得分:1)

当您定义模型时,Django为您创建了该属性,是django的一部分 提供脚手架来帮助您实现一对多和多对多的关系,您可以在Accessing related objects中阅读更多相关信息。