以编程方式使用 Django 的 loaddata
我想从 Django 视图调用相当于 manage.py loaddata
的功能。 我希望能够指定从何处加载数据以及将其加载到哪个应用程序。
有任何想法吗?
I'd like to call the equivalent of manage.py loaddata
from a Django view. I'd like to be able to specify where to load the data from and which application to load it into.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每个
django-admin.py
(manage.py
) 命令,如 文档,您可以从代码中调用:其中第一个参数是命令名称,所有其他位置参数与命令行位置参数相同,所有关键字参数都是选项。
Each
django-admin.py
(manage.py
) command, as seen in the documentation, you can call from your code with:Where first param is the command name, all other position params are the same as command line position params and all keyword params are options.