c语言sscanf函数的用法是什么
275
2022-08-28
Python flask实战订餐系统微信小程序-15后台管理员账户相关页面搭建
一、账户登录相关页面
1.创建User对象文件
2.创建login,edit,reset-pwd方法
3.创建对应的视图层
二、账户管理相关页面
1.创建Account
2.创建index,set,info方法
3.创建对应视图层
三、实战
3.1创建login
创建user文件夹,并创建User.py文件:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-cwKQ3hN2-1626795424463)(C:\Users\hbq\AppData\Roaming\Typora\typora-user-images\image-20210720220449946.png)]
文件内容如下:
# -*- coding: utf-8 -*-from flask import Blueprintroute_user = Blueprint('user_page', __name__)@route_user.route("/login")def login(): return "login"
py中引入route_user
# -*- coding: utf-8 -*-from application import appfrom web.controllers.index import route_indexfrom web.controllers.user.User import route_userapp.register_blueprint( route_index,url_prefix = "/" )app.register_blueprint( route_user,url_prefix = "/user" )
运行:
3.2渲染页面
User.py
# -*- coding: utf-8 -*-from flask import Blueprint,render_templateroute_user = Blueprint('user_page', __name__)@route_user.route("/login")def login(): return render_template("user/login.html")
将static和templates复制到这个文件夹下
静态资源下载地址:
链接:提取码:xvg5
application.py``添加模板的路径引用
拷贝UrlManager.py到libs文件夹下
将函数模板引入进来:
'''将函数注入到模板中'''from common.libs.UrlManager import UrlManagerapp.add_template_global(UrlManager.buildStaticUrl, 'buildStaticUrl')app.add_template_global(UrlManager.buildUrl, 'buildUrl')
运行:
但是这里图片没有被正常的渲染。
原因是因为样式文件加载失败:
创建static.py文件
# -*- coding: utf-8 -*-from flask import Blueprint,send_from_directoryfrom application import approute_static = Blueprint('static', __name__)@route_static.route("/
application.py添加root_path
py中引入route_static
# -*- 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_staticapp.register_blueprint( route_index,url_prefix = "/" )app.register_blueprint( route_user,url_prefix = "/user" )app.register_blueprint( route_static,url_prefix = "/static" )
运行:
可以看到成功加载文件。
3.3构建仪表盘页面
index.py渲染index.html模板
运行:
Uer.py中渲染编辑页面和重置密码页面
3.4添加账号管理页面
添加Account.py并添加url地址
py中引入route_account
# -*- 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_accountapp.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" )
运行:
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~