期末做品檢查

  1. 網站父模板統一佈局:頭部導航條、底部圖片導航、中間主顯示區域佈局
  2. 註冊、登陸、註銷
  3. 發佈、列表顯示
  4. 詳情頁
  5. 評論、列表顯示
  6. 我的中心
  7. 搜索,條件組合搜索
    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <title>{% block title%}car{% endblock %}</title>
        <link href="{{ url_for('static',filename='css/base.css') }}" rel="stylesheet" type="text/css">
        <link rel="stylesheet" href="http://cdn.static.runoob.com/libs/bootstrap/3.3.7/css/bootstrap.min.css">
       <script src="{{ url_for('static',filename='js/base.js') }}"></script>
    {% block head %}
    
    
    {% endblock %}
        <style>
            nav navbar-nav li {
                list_style: none;
                float: left;
                margin: 10px;
            }
    
            .nav1 li{
                    list-style: none;
                    float: left;
                    margin: 10px;
                }
        </style>
    </head>
    <body id="mybody">
    <div class="daohang_box"><form action="{{ url_for('search')}}" method="get" >
    <nav class="navbar" role="navigation" style="">
        <div class="container-fluid" id="container">
            <div class="navbar-header">
                <a class="navbar-brand" href="{{ url_for('index') }}">首頁</a>
            </div>
            <div>
                <ul class="nav navbar-nav">
                    {% if username %}
                        <li><a href={{ url_for('usercenter',user_id=session.get('userid'),tag=1) }}>{{ username }}</a></li>
                        <li><a href="{{ url_for('logout') }}">註銷 </a></li>
                    {% else %}
                    <li><a href="{{ url_for('login') }}" onclick="">登陸</a></li>
                    <li><a href="{{ url_for('regist') }}" onclick="">註冊</a></li>
                    {% endif %}
                    <li><a href="{{ url_for('lable') }}" onclick="">發佈問答</a></li>
                </ul>
            </div>
           <div style="float: right">
               <img style="width: 50px; height: 50px" id="myonoff" onclick="mySwitch()" src="http://up.enterdesk.com/edpic/78/9a/ac/789aacfb997963e7a3516dd916448acc.jpg" style="width:50px" >
           </div>
            <div><input id="search_box" name='q'type="text" placeholder="請輸入關鍵詞查找">
            <button id="search" type="submit">搜索</button>
    
            </div>
    {#    <body background="http://p5.so.qhimgs1.com/bdr/_240_/t01fb87f1928a69d5eb.jpg" style="width: 100%; height: 100%"></body>#}
    
        </div>
    </nav>
    </form>
    {% block main %}{% endblock %}
    
    </body >
    </html>
    </body>
    {% extends 'base.html' %}
    {% block title %}detail{% endblock %}
    {% block head %}
        {#    <script src="{{ url_for('static',filename='js/base.js') }}" type="text/javascript"></script>#}
        <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/detail.css') }}">
    {% endblock %}
    {% block main %}
        <div align="center">
            <div class="a1">
                 <h3>{{ ques.title }}<br><small>{{ ques.author.Username }}
                        <span class="badge">{{ ques.creat_time }}</span></small></h3></div>
                        <p class="lead">{{ ques.detail }}</p>
                <h3>
            <form action="{{ url_for('comment') }}" method="post">
    {
                <br></div>
            <div class="a2" style="margin-left: 25%">
                <div class="pinglun"><label for="comment">評論</label><br></div>
                <textarea id="comment" rows="5" name="commentdetail" style="width: 90ch"></textarea></div>
            <input name="question_id" type="hidden" value="{{ ques.id }}"/>
            <button type="submit" class="fasong" style="margin-left: 25%">發送評論</button>
            <h4 style="margin-left: 25%">comment:({{ ques.comments|length }})</h4>
        </div>
            </form>
    
        <ul class="list-group" style="margin-left:20%;margin-top: 5%;margin-right:20%">
            {% for foo in ques.comments %}
                    <li class="list-group-item" >
                    <a href={{ url_for('usercenter',user_id=foo.author_id,tag=1 )}}>{{ foo.author.username }} </a><br>
                        <a href={{ url_for('detail',question_id=foo.id)}}>{{ foo.title }}</a>
    
                        <span class="badge">{{ foo.creat_time }}</span>
                        <p class="abstract">{{ foo.detail }}</p>
                    </li>
            {% endfor %}
        </ul>
        </div>
    {% endblock %}
    {% extends 'base.html' %}
    
    {% block title %}首頁{% endblock %}
    
    {% block head %}
        <link href="{{ url_for('static',filename='css/index.css') }}" rel="stylesheet" type="text/css">
        <script src="{{ url_for('static',filename='js/index.js') }}"></script>
    {% endblock %}
    
    {% block main %}
        <ul class="list-group" style="margin-left:20%;margin-top: 5%;margin-right:20%">
    {#    <li class="list-group-item">#}
    {#        <span class="glyphicon glyphicon-leaf" aria-hidden="true"></span>#}
    {#        <a href="{{ url_for('detail')}}">username</a>#}
    {#        <br>#}
    {#        <a href="#)"title></a>#}
    {#        <span class="badge">create_time</span>#}
    {#       <p>detauk</p>#}
            {% for foo in question %}
                    <li class="list-group-item" >
                    <a href={{ url_for('usercenter',user_id=foo.author_id,tag=1 )}}>{{ foo.author.username }} </a><br>
                        <a href={{ url_for('detail',question_id=foo.id)}}>{{ foo.title }}</a>
    
                        <span class="badge">{{ foo.creat_time }}</span>
                        <p class="abstract">{{ foo.detail }}</p>
                    </li>
            {% endfor %}
        </ul>
    <div>
    
    </div>
    
    {% endblock %}
    {% extends 'base.html' %}
    {% block title %}
        發佈問答
    {% endblock %}
    {% block head %}
    
    {%  endblock %}
    {% block main %}
    <form  class="all" action="{{ url_for('lable') }}" method="POST">
        <div style="margin-left:30%;margin-top: 10%" >
            <h3 >發佈問答</h3>
            <div class="form_group"></div>
            <div class="form_group">
                <!--<label for="questionDetial">標題</label>-->
                <!--<textarea class="form-control" rows="1" id="questionDetial"></textarea>-->
                <label for="biaoti">標題</label>
                <input id="biaoti" type="text" placeholder="請輸入標題!" name="title">
    
            </div>
            <div class="form_group" >
                <label for="questionDetial">詳情</label>
                <textarea class="form-control" rows="5" id="questionDetial" style="width:60rem " name="detail"></textarea>
            </div>
    </div>
    
            <div class="checkbox" style="margin-left:30%;margin-top: 1%">
                <button type="submit" class="btn bun-default">發佈</button>
            </div>
    
    </form>
    {%  endblock %}
    {% extends 'base.html' %}
    
    {% block title %}登陸{% endblock %}
    
    {% block head %}
        <link href="{{ url_for('static',filename='css/login.css') }}" rel="stylesheet" type="text/css">
        <script src="{{ url_for('static',filename='js/login.js') }}"></script>
    {% endblock %}
    {% block main %}
    <div class="a" >
        <div class="login" ><h2>登陸</h2></div>
        <form action="{{ url_for('login') }}"method="post">
        <div class="a1" >
            用戶名:<input id="name" type="text"placeholder="請輸入用戶名" name="username"><br>
            密  碼: <input id="password" type="password"placeholder="請輸入密碼" name="password"><br>
            </div>
            <div id="error_box"><br></div>
          <div class="a2" >
             <button onclick="myLogin()">登陸</button>
             <button type="button" onclick=window.alert("是否取消登陸!")>取消</button>
    </div>
        </div>
    
        </form>
    {% endblock %}
    {% extends 'base.html' %}
    
    {% block title %}註冊{% endblock %}
    
    {% block head %}
        <link href="{{ url_for('static',filename='css/regist.css') }}" rel="stylesheet" type="text/css">
        <script src="{{ url_for('static',filename='js/regist.js') }}"></script>
    {% endblock %}
    
    {% block main %}
    <div class="a" >
        <div class="regist" ><h2>註冊</h2></div>
        <form action="{{ url_for('regist') }}"method="post" onsubmit="return myLogin()">
        <div class="a1" >
            用戶名:<input id="name" type="text"placeholder="請輸入用戶名" name="username"><br>
            暱  稱: <input id="nickname" type="text"placeholder="請輸入暱稱" name="nickname"><br>
            密  碼: <input id="password" type="password"placeholder="請輸入密碼" name="password"><br>
            密  碼: <input id="password1" type="password"placeholder="請再次輸入密碼" name="password1"><br>
    
        </div>
            <div id="error_box"><br></div>
          <div class="a2" >
             <button >註冊</button>
             <button type="button" onclick=window.alert("是否取消登陸!")>取消</button>
    </div>
    
        </div>
    
        </div>
        </form>
    {% endblock %}
    {% extends 'userbase.html' %}
    
    {% block user %}
        {% block head %}
            <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/userbase.css') }}">
            <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/user.css') }}">
        {% endblock %}
        <div class="a1">
            <h3>{{ username }}</h3><br>
    {#            <small>所有問答</small>#}
            </div>
            <ul>
                {% for foo in user.question %}
                    <li class="list-group-item" >
                    <a href={{ url_for('index')}}>{{ foo.author.username }} </a><br>
                        <a href={{ url_for('detail',question_id=foo.id)}}>{{ foo.title }}</a>
    
                        <span class="badge">{{ foo.creat_time }}</span>
                        <p class="abstract">{{ foo.detail }}</p>
                    </li>
            {% endfor %}
            </ul>
        </div>
    
    {% endblock %}
    
    
    {% extends 'userbase.html' %}
    
    {% block user %}
        {% block head %}
            <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/userbase.css') }}">
            <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/user.css') }}">
        {% endblock %}
    
        <div class="a1">
            <h3>{{ username}}
    {#            <small>我的信息</small>#}
            </h3><br>
            <ul>
                <li href={{ url_for('index' )}}>用戶:{{ username}}</li>
                <li>編號:{{ user.id}}</li>
                <li>暱稱:{{ user.nickname}}</li>
                <li>文章篇數:{{ user.question|length }}</li>
                <li>評論數:{{ user.comment|length }}</li>
            </ul>
    </div>
    
    {% endblock %}
    
    
    {% extends 'base.html' %}
    {% block title %}我的中心{% endblock %}
    
    {% block head %}
            <style>
                .nav1 >li{
                    list-style: none;
                    float: left;
                    margin: 10px;
                }
            </style>
    
    {% endblock %}
    
    {% block main %}
         <div class="nav1">
            <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>
        </div>
        {% block user %}{% endblock %}
    {% endblock %}
    
    {% extends 'base.html' %}
    {% block title %}我的中心{% endblock %}
    {% block head %}
        <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/usercenter.css') }}">
    {% endblock %}
    {% block main %}
        <div class="a1">
            <h3>{{ username }}<br>
                <small>所有問答</small>
            </h3></div>
            <ul>
                {% for foo in ques.question %}
                    <li class="list-group-item" >
                    <a href="#">{{ foo.author.username }} </a><br>
                        <a href={{ url_for('detail',question_id=foo.id)}}>{{ foo.title }}</a>
    
                        <span class="badge">{{ foo.creat_time }}</span>
                        <p class="abstract">{{ foo.detail }}</p>
                    </li>
            {% endfor %}
    
        <div class="a1">
            <h3>{{ username }}<br>
                <small>所有評論</small>
            </h3></div>
            <ul>
                {% for foo in ques.comments %}
                    <li class="list-group-item" >
                    <a href="#">{{ foo.author.username }} </a><br>
                        <a href={{ url_for('detail',question_id=foo.id)}}>{{ foo.title }}</a>
    
                        <span class="badge">{{ foo.creat_time }}</span>
                        <p class="abstract">{{ foo.detail }}</p>
                    </li>
            {% endfor %}
    
        <div class="a1">
           <h3>{{ username}}
    {#            <small>我的信息</small>#}
            </h3><br>
            <ul>
                <li>用戶:{{ username}}</li>
                <li>編號:{{ user.id}}</li>
                <li>暱稱:{{ user.nickname}}</li>
                <li>文章篇數:{{ user.questions|length }}</li>
    
            </ul>
    
    
    
    {% endblock %}

     

    1. 我的學期總結
    2. 總結Python+Flask+MysqL的web建設技術過程,標準以下:
      1. 便是對本身所學知識的梳理
      2. 也可做爲初學入門者的簡單教程
      3. 也可做爲本身之後複習的嚮導
      4. 也是一種向外展現能力的途徑                                                                                                                                                                                                                                                                
        這學期學習了WEB的建設,運用了Python+Flask+MysqL,Python是一種面向對象的解釋型 計算機程序設計語言,由荷蘭人 Guido van Rossum於1989年發明,第一個公開發行版發行於1991年。Python是純粹的 自由軟件,  源代碼解釋器CPython遵循  GPL( GNU General Public License)協議 。Python語法簡潔清晰,特點之一是強制用空白符(white space)做爲語句縮進。Python具備豐富和強大的庫。它常被暱稱爲 膠水語言,可以把用其餘語言製做的各類模塊很輕鬆地聯結在一塊兒。常見的一種應用情形是,使用Python快速生成程序的原型(有時甚至是程序的最終界面),而後對其中[有特別要求的部分,用更合適的語言改寫,好比 3D遊戲中的圖形渲染模塊,性能要求特別高,就能夠用C/C++重寫,然後封裝爲Python能夠調用的擴展類庫。須要注意的是在您使用擴展類庫時可能須要考慮平臺問題,某些可能不提供 跨平臺的實現。
        Flask是一個使用  Python 編寫的輕量級 Web 應用框架。其  WSGI 工具箱採用 Werkzeug , 模板引擎則使用 Jinja2 。Flask使用 BSD 受權。
        Flask也被稱爲 「microframework」 ,由於它使用簡單的核心,用 extension 增長其餘功能。Flask沒有默認使用的數據庫、窗體驗證工具。
        MySQL是一種關係數據庫管理系統,關係數據庫將數據保存在不一樣的表中,而不是將全部數據放在一個大倉庫內,這樣就增長了速度並提升了靈活性。
        MySQL所使用的 SQL 語言是用於訪問 數據庫的最經常使用標準化語言。MySQL 軟件採用了雙受權政策,分爲社區版和商業版,因爲其體積小、速度快、整體擁有成本低,尤爲是 開放源碼這一特色,通常中小型網站的開發都選擇 MySQL 做爲網站數據庫。
相關文章
相關標籤/搜索
本站公眾號
   歡迎關注本站公眾號,獲取更多信息