了解 Django 初始数据装置
问题
- 当
initial_data.json
装置位于项目目录内但不位于 Django 搜索装置的三个指定位置之一时,为什么 Django 会自动加载它?
配置信息
- 我没有在settings.py中设置
FIXTURE_DIRS
设置 - Django 1.2.1
Django关于Fixture位置的文档
什么是 Django django-admin.py 和 manage.py 文档指出:
Django 将在三个位置搜索固定装置:
- 在每个已安装应用程序的装置目录中
- 在 FIXTURE_DIRS 设置中指定的任何目录中
- 在由固定装置命名的文字路径中
Django 将加载它在这些位置找到的与提供的装置名称匹配的所有装置。
Question
- Why does Django automatically load the
initial_data.json
fixture when it's located inside the project directory but not located in one of the three specified locations that Django searches for fixtures?
Configuration Information
- I have not set the
FIXTURE_DIRS
setting in settings.py - Django 1.2.1
Django's Documentation Regarding Fixture Locations
The What's a "Fixture" section of Django's django-admin.py and manage.py documentation states:
Django will search in three locations for fixtures:
- In the fixtures directory of every installed application
- In any directory named in the FIXTURE_DIRS setting
- In the literal path named by the fixture
Django will load any and all fixtures it finds in these locations that match the provided fixture names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
initial_data 实际上是属于 syncdb 的行为。您引用的是 loaddata 在查询时将查找的默认位置。 initial_data.json 由syncdb 选项检测并传递给loaddata。我同意这有点令人困惑,但实际上您正在将一般夹具加载行为(loaddata)与自动夹具加载行为(syncdb)混合在一起。
希望这有帮助。
initial_data is actually behaviour belonging to syncdb. What you are citing is the default places loaddata will look for when queried. initial_data.json is detected by the syncdb option and passed to loaddata. I agree it's a bit confusing, but you are actually mixing general fixture loading behaviour (loaddata) with automatic fixture loading behaviour (syncdb).
Hope this helps.