博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
完成个人中心—导航标签
阅读量:4926 次
发布时间:2019-06-11

本文共 1165 字,大约阅读时间需要 3 分钟。

  1. 个人中心—视图函数带标签页面参数tag
    @app.route('/usercenter/<user_id>/<tag>')
    def usercenter(user_id, tag):
       if tag == ‘1':
           return render_template('usercenter1.html', **context)
  2. 个人中心—导航标签链接增加tag参数
    <li role=“presentation”><a href=“{
    { url_for(‘usercenter’,user_id = user.id,tag = ‘1’) }}">全部问答</a></li>
  3. 个人中心—有链接到个人中心页面的url增加tag参数

 <a href="{

{ url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
{ session.get('user') }}</a>

主py文件:

@app.route('/gr/
/
')@loginFirstdef gr(user_id,tag): user=User.query.filter(User.id==user_id).first() #把信息存放到数据库里面 context={ 'username':user.username, 'question':user.question, 'comments':user.comments, 'user':user } if tag == '1': return render_template('wd.html',**context) #输出显示数据库里的信息 elif tag == '2': return render_template('pl.html',**context) else: return render_template('zx.html', **context)

个人中心导航html:

链接页面html:

首页:

详情页:

导航页:

 

转载于:https://www.cnblogs.com/qisq/p/8066977.html

你可能感兴趣的文章
atom 插件 python语法验证linter-flake8-------填坑
查看>>
cuda中当元素个数超过线程个数时的处理案例
查看>>
转:PCL+VS2010环境配置
查看>>
volatile
查看>>
uploadify3.2.1加载时,报NetworkError 404 Not Found或NetworkError forbidden错误
查看>>
Vim 常用命令总结
查看>>
python中的数据类型(二)
查看>>
Android:scrollview与listview共存
查看>>
ImageLoader简介和使用方法
查看>>
重视知识的本质
查看>>
为什么linux驱动中变量或者函数都用static修饰?(知乎问题)
查看>>
课后作业2:个人项目
查看>>
初猎《梦断代码》
查看>>
短信SMS接口
查看>>
Angular滚动到底部自动加载
查看>>
do-while语句
查看>>
Multiple ComboBox的赋值取值
查看>>
永不消逝的电波
查看>>
ZC_float_测试
查看>>
Linux CentOS7下安装python3
查看>>