django项目启动时,自定义执行某个py文件
在任意的app下的apps.py中的Config类下自定义ready()方法,并且调用autodiscover_modules。
app01/apps.py
from django.apps import AppConfig
from django.utils.module_loading import autodiscover_modules class App01Config(AppConfig):
name = 'app01' def ready(self):
autodiscover_modules('xxx.py')
app02/apps.py
from django.apps import AppConfig
from django.utils.module_loading import autodiscover_modules class App02Config(AppConfig):
name = 'app02' def ready(self):
autodiscover_modules('xxx.py')
为了验证我们在urls.py打印一句话
from django.contrib import admin
from django.urls import path print('路由开始加载')
urlpatterns = [
path('admin/', admin.site.urls),
]
然后分别在两个项目目录下新建xxx.py文件,代码如下
# app01/xxx.py
print('app01下的xxx.py') # app02/xxx.py
print('app02下的xxx.py')
一切都准备好了,开始运行吧。
效果图已经说明我们自定义执行某个py文件成功了。
注意:为什么会执行两遍呢?因为WiMAX的django是默认重启的。会自动检测我们的代码是否改动。
如果不想看到,执行的时候命令:python manage.py runserver --noreload