本文整理汇总了Python中tg.configuration.AppConfig.call_on_shutdown方法的典型用法代码示例。如果您正苦于以下问题:Python AppConfig.call_on_shutdown方法的具体用法?Python AppConfig.call_on_shutdown怎么用?Python AppConfig.call_on_shutdown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tg.configuration.AppConfig
的用法示例。
在下文中一共展示了AppConfig.call_on_shutdown方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_startup
# 需要导入模块: from tg.configuration import AppConfig [as 别名]
# 或者: from tg.configuration.AppConfig import call_on_shutdown [as 别名]
# managing login and logout of your application
base_config.sa_auth.form_plugin = None
# You may optionally define a page where you want users to be redirected to
# on login:
base_config.sa_auth.post_login_url = "/post_login"
# You may optionally define a page where you want users to be redirected to
# on logout:
base_config.sa_auth.post_logout_url = "/post_logout"
# Handle custom errors
base_config.handle_status_codes.append(400)
# Startup and shutdown
def on_startup():
# notify.connect()
pass
def on_shutdown():
pass
base_config.call_on_startup = [on_startup]
base_config.call_on_shutdown = [on_shutdown]
# ToscaWidgets
base_config.use_toscawidgets = False
base_config.use_toscawidgets2 = True