我是新的django框架,我想處理django應用程序的全局事件,如onStart和asp.net的onStop。反正有這樣做,我已經使用下面的代碼處理OnStart,但無法處理onStop,請指導我這樣做。如何處理django停止事件?
__author__ = 'qasim'
from django.apps import AppConfig
class MyAppConfig(AppConfig):
name = 'api'
verbose_name = "My Application"
def ready(self):
print("hello-----------------------------------------------------")
pass # startup code here
Django與asp.net完全無關,它不清楚你要問什麼。 – Sayse
@Sayse我想在我的django服務器停止時執行代碼。 –
看看這裏:http://stackoverflow.com/questions/15472075/django-framework-is-there-a-shutdown-event-that-can-be-subscribed-to – SimoV8