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

开始Flask项目

时间:2017-11-03 21:43:04      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:搜索   title   submit   har   lan   alt   head   image   ext   

  1. 新建Flask项目。
  2. 设置调试模式。
  3. 理解Flask项目主程序。
  4. 使用装饰器,设置路径与函数之间的关系。
  5. 使用Flask中render_template,用不同的路径,返回首页、登录员、注册页。
  6. 用视图函数反转得到URL,{{url_for(‘login’)}},完成导航条里的链接。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>denglu</title>
    <link rel="stylesheet"type="text/css"href="171.css">
    <style type="text/css">
p {     color: red;
 }
        .textblue{
            color: orange;
        }
        #a{
            color: blue;
        }

#tt{
color:#FFD700;
}
.x1{
    color: red;
}

</style>
</head>
<body>

<nav>


    <input type="text"name="search">
    <button type="submit">搜索</button>
    <a href="http://127.0.0.1:5000/">首页</a>
    <a href="http://127.0.0.1:5000/login">登录</a>
    <a href="{{ url_for(‘register‘) }}">注册</a>



<hr>
 <p id="a">常见问题</p><p class="textblue">联系我们</p><p>用户意见</p>


</body>
</html>

 

技术分享

 


技术分享       技术分享

 

 

开始Flask项目

标签:搜索   title   submit   har   lan   alt   head   image   ext   

原文地址:http://www.cnblogs.com/834477300j/p/7779659.html

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