Python flask实战订餐系统微信小程序-16后台管理系统其他页面调整

网友投稿 1175 2022-11-26

Python flask实战订餐系统微信小程序-16后台管理系统其他页面调整

Python flask实战订餐系统微信小程序-16后台管理系统其他页面调整

后台管理系统其他页面调整

为了快速完成调整,直接将配置好的文件夹拷贝过来:

再py文件中引入对应的路由

# -*- coding: utf-8 -*-from application import appfrom web.controllers.index import route_indexfrom web.controllers.user.User import route_userfrom web.controllers.static import route_staticfrom web.controllers.account.Account import route_accountfrom web.controllers.finance.Finance import route_financefrom web.controllers.food.Food import route_foodfrom web.controllers.member.Member import route_memberfrom web.controllers.stat.Stat import route_statapp.register_blueprint( route_index,url_prefix = "/" )app.register_blueprint( route_user,url_prefix = "/user" )app.register_blueprint( route_static,url_prefix = "/static" )app.register_blueprint( route_account,url_prefix = "/account" )app.register_blueprint( route_finance,url_prefix = "/finance" )app.register_blueprint( route_food,url_prefix = "/food" )app.register_blueprint( route_member,url_prefix = "/member" )app.register_blueprint( route_stat,url_prefix = "/stat" )

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:vscode自定义运行和调试创建launch.json文件及项目独立配置文件
下一篇:linux下安装虚拟环境
相关文章

 发表评论

暂时没有评论,来抢沙发吧~