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.
我是 Django 的新手。我在其中做了一个小项目,效果很好。
现在我想要的是我在 view.py 文件中创建了一些函数,现在我想在其他文件中调用这些函数,比如 a.py。所以我怎么能做到这一点,任何人都有一些想法。
谢谢
在a.py做:
a.py
from views import function1, function2 def a_function_one(): ... #call function1 from views function1()