码迷,mamicode.com
首页 > 其他好文 > 详细

完成个人中心—导航标签

时间:2017-12-15 22:43:59      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:name   tag   span   app   else   first   username   信息   htm   

py代码


@app.route(/usercenter/<user_id>/<tag>)
@loginFirst
def usercenter(user_id,tag):
    user = User.query.filter(User.id==user_id).first
    context ={
        user:user
    }
    if tag ==1:
        return render_template(usercenter1.html, **context)
    elif tag ==2:
        return render_template(usercenter2.html, **context)
    else:
        return render_template(usercenter3.html, **context)



html代码

<ul class="nav_ul">
    <li role="presentation"><a href="{{ url_for(‘usercenter‘,user_id= user.id,tag=1) }}">全部提问</a></li>
    <li role="presentation"><a href="{{ url_for(‘usercenter‘,user_id= user.id,tag=2) }}">全部评论</a></li>
    <li role="presentation"><a href="{{ url_for(‘usercenter‘,user_id= user.id,tag=3) }}">个人信息</a></li>
</ul>

  <a href="{{ url_for(‘usercenter‘,user_id=foo.author_id,tag=1)}}">{{ foo.author.username}}</a>
 <a href="{{ url_for(‘usercenter‘,user_id= session.get(‘id‘),tag =1) }}">{{ session.get(user) }}</a>

 

 

完成个人中心—导航标签

标签:name   tag   span   app   else   first   username   信息   htm   

原文地址:http://www.cnblogs.com/0542054ghgf/p/8044900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!