接上一篇文章《像SpringBoot一样使用Flask - 2.静态资源访问及模版》,我们看到测试的"controller"都写在了一起🤔
如何像Springboot一样划分出一个完整的controller,里面实现不同业务的包呢?
本篇引入Blueprint,蓝图。
在Flask中每一个应用用“蓝图”表示。作用:方便复用、扩展、移植。特点:一个应用可以有多个蓝图,可以给每个蓝图添加URL前缀,方便区分不同蓝图所代表的的模块。比如:"/user"、“/goods”
一、创建一个包吧,就叫controller,写个TestController,只是这里是py而不是java.
from flask import (
Blueprint
)
bp = Blueprint('test', __name__, url_prefix='/test')
@bp.route("/hi", methods=["POST", "GET"])
def hi():
return "小明,你好"
二、写好了,怎么注入呢?和上面bp = Blueprint('test', __name__, url_prefix='/test')定义对应
三、测试 成功了✌️。
四、整理掉之前多余的请求,替换掉
🤔,看来起有点Springboot味道了,不能说毫无关系,就是一样