导入django中的所有模块
在django中有没有办法导入所有模块
ex: from project.models import *
ex: from project1.models import *
这可以用一条语句来完成吗
In django is there way to import all modules
ex: from project.models import *
ex: from project1.models import *
Can this be done with one statement
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想在 shell 中测试内容时执行此操作,请查看 django-extensions 项目。
这是一个非常简洁的扩展,当您从命令行执行
./manage.py shell_plus
时,它会启动一个 shell 并自动加载项目中的所有模型。If you just want to do this when testing things in the shell, look into the
shell_plus
command provided by the django-extensions project.This is a really neat extension, which starts a shell and automatically loads all the models in your project when you do
./manage.py shell_plus
from the command line.