25 lines
541 B
Python
25 lines
541 B
Python
# -*- coding: UTF-8 -*-
|
|
"""
|
|
@Project : FlaskProject
|
|
@File : error.py
|
|
@IDE : PyCharm
|
|
@Author : 爱写屎山的王可奕
|
|
@Email : 1933658780@qq.com
|
|
@Date : 2023/4/28 9:31
|
|
@Comment : errorhandler的蓝图
|
|
"""
|
|
from flask import Blueprint, render_template
|
|
|
|
# 创建蓝图对象
|
|
bp_error = Blueprint('bp_error', __name__)
|
|
|
|
|
|
@bp_error.app_errorhandler(404)
|
|
def page_not_found(e):
|
|
return render_template('404.html'), 404
|
|
|
|
|
|
@bp_error.app_errorhandler(500)
|
|
def internal_server_error(e):
|
|
return render_template('500.html'), 500
|