Files
order/web/interceptors/ErrorInterceptor.py

9 lines
334 B
Python
Raw Normal View History

2019-07-29 15:28:02 +08:00
# -*- 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':'很抱歉!您访问的页面不存在' } )