Python Flask构建微信小程序订餐系统 (六)

账号管理

展示账户列表

默认情况下的账户列表布局

Python Flask构建微信小程序订餐系统 (六)_第1张图片

 Python Flask构建微信小程序订餐系统 (六)_第2张图片

查询用户信息

查询 所有用户信息 按照 倒序 的方式查询出来

User.query.order_by( User.uid.desc() ).all()
......

@route_account.route("/index")
def index():
    #模版文件夹取名叫 "account/login.index"
    resp_data = {}
    #查询所有用户信息按照倒序的方式查询出来
    list = User.query.order_by( User.uid.desc() ).all()
    resp_data['list'] = list
    #传递参数resp_data
    return ops_render("account/index.html",resp_data )

......

你可能感兴趣的:(微信小程序呀,Python,Flask,微信小程序,Html)