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

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

    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参数
      u <a href="{
      { url_for('usercenter',user_id = session.get('userid'), tag=1) }}">{
      { session.get('user') }}</a>
    4. @app.route('/usercenter/
      /
      ')def usercenter(user_id,tag): user = User.query.filter(User.id == user_id).first() context = { 'usern': user.id, 'username': user.username, 'fankui':user.fankui, 'comment':user.comment } 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)

       

    5. {% extends'danghangye.html' %}{% block title %}个人中心{% endblock %}{% block head %}{% endblock %}{% block main %}    
      {% block usercenter %}{% endblock %}{% endblock %}
                              {% block head %}{% endblock %}            
      {% block title %}{% endblock %}首页
      {% block main %}

      {

      {username}}请登录

      {% for foo in fankui %}
    6. {
      {foo.author.username}}评论({
      {foo.comment|length}})
      {
      {foo.biaoti}}
      {
      {foo.creat_time}}

      {

      {foo.questionDetail}}

    7. {% endfor %}
      {% endblock %}

       

转载于:https://www.cnblogs.com/cyj5201314/p/8041485.html

你可能感兴趣的文章
mysql5.7虚拟列初次尝试
查看>>
Exchange server2013 搭建步骤
查看>>
购物车
查看>>
Java基础学习总结(2)——接口
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
配置Linux 免密码登陆
查看>>
安装php:configure: error: libpng.(a|so) not found解决办法
查看>>
公众号和微信个人号 加粉最全的方法
查看>>
lvs、haproxy、nginx 负载均衡的比较分析
查看>>
Git使用详细教程
查看>>
Flash反编译软件(Action Script Viewer)ASV2012/05.16发布
查看>>
Java基础学习总结(11)——重载与重写
查看>>
Linux实用工具
查看>>
以太网类型汇总
查看>>
什么是Floating (浮动)规则?
查看>>
交换机端口设置为镜像导致网络不通
查看>>
Linux高负载下优化MYSQL
查看>>
Binder服务-底层驱动
查看>>
国内外一些ip反查域名的网站
查看>>
迪普防毒墙产品线
查看>>