完成个人中心—导航标签

    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>
      {% extends 'base.html' %}
      {% block title %}个人中心{% endblock %}
      {% block head %}
          <style>
              .nav_ul li{
                  list-style:none;
                  float:left;
                  margin:10px;
          </style>
      {% endblock %}
      
      {% block main %}
          <ul class="nav_ul">
              <li role="presentation"><a href="{{ url_for('userbase',user_id = user.id,tag = '1') }}">全部问答</a></li>
              <li role="presentation"><a href="{{ url_for('userbase',user_id = user.id,tag = '2') }}">全部评论</a></li>
              <li role="presentation"><a href="{{ url_for('userbase',user_id = user.id,tag = '3') }}">个人信息</a></li>
          </ul>
      
          {% block user %}{% endblock %}
      {% endblock %}
      

        

posted on 2017-12-19 23:10  072苏喜虹  阅读(76)  评论(0)    收藏  举报

导航