python学习
This commit is contained in:
9
web/interceptors/ErrorInterceptor.py
Normal file
9
web/interceptors/ErrorInterceptor.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from application import app
|
||||
from common.libs.Helper import ops_render
|
||||
from common.libs.LogService import LogService
|
||||
|
||||
@app.errorhandler( 404 )
|
||||
def error_404( e ):
|
||||
LogService.addErrorLog( str( e ) )
|
||||
return ops_render( 'error/error.html',{ 'status':404,'msg':'很抱歉!您访问的页面不存在' } )
|
||||
Reference in New Issue
Block a user