首页 > 其他 > 详细

个人中心标签页导航

时间:2017-12-15 12:01:04      阅读:226      评论:0      收藏:0      [点我收藏+]
    1. 新页面userbase.html,用<ul ><li role="presentation"> 实现标签页导航。
      <ul class="nav nav-tabs">
        <li role="presentation"><a href="#">Home</a></li>
        <li role="presentation"><a href="#">Profile</a></li>
        <li role="presentation"><a href="#">Messages</a></li>
      </ul>

    2. 让userbase.html继承base.html。
      重写title,head,main块.
      将上述<ul>的样式放在head块,<ul>放在main块中.
      定义新的块user。

    3. 让上次作业完成的个人中心页面,继承userbase.html,原个人中心就自动有了标签页导航。

    4. 制作个人中心的三个子页面,重写userbase.html中定义的user块,分别用于显示问答、评论、个人信息。

    5. 思考 如何实现点标签页导航到达不同的个人中心子页面。
@app.route(/usercenter/<user_id>/<tag>)
@loginFirst
def usercenter(user_id,tag):
    user = User.query.filter(User.id == user_id).first()
    context={
        user:user,
        username:user.username,
        questions:user.question,
        comments:user.comments
    }
    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)
 <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>
<a href="{{url_for(‘usercenter‘,user_id=ques.author_id,tag=1)}}">{{foo.author.username}}</a>

 

个人中心标签页导航

原文:http://www.cnblogs.com/yangjlee/p/8042270.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!