Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的views.py中有很多导入语句。
如果将所有导入都放在文件的开头,我将导入准确地放在需要它们的视图中,这对性能有帮助吗?
将它们放在需要它们的特定视图中也会有所帮助,例如,如果您必须删除不需要向上滚动的视图并删除不需要的导入。
否。如果所有导入都将放在文件的开头,则导入只执行一次 - 当 django-process 启动时。