博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
开始Flask项目
阅读量:4978 次
发布时间:2019-06-12

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

1Flask

from flask import Flask,render_template

app = Flask(__name__)

@app.route('/')

def deng():
return render_template('deng.html')

@app.route('/zhuce')

def zhuce():
return render_template('zhuce.html')

@app.route('/test')

def test():
return render_template('test1.html')

if __name__ == '__main__':
app.run(debug=True)

2用视图函数反转得到URL,url_for(‘login’),完成导航里的链接:

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>图片导航</title>
<link rel="stylesheet" type="text/css" href="../static/css/test1.css">
</head>
<body>

<div class="header">

<a href="/">

<span class="dz">首页</span>
<a href="http://127.0.0.1:5000/test"/>
</a>
<a href="{
{ url_for('/')}}" class="dz">登录</a>
<a href="{
{ url_for('/zhuce')}}" class="dz">注册</a>

<a href="http://127.0.0.1:5000/" class="dz">登录</a>
<a href="http://127.0.0.1:5000/zhuce" class="dz">注册</a>

<input type="text" name="q" id="q" value="" autocomplete="off"

placeholder="搜索" class="search-input"><br>

</div>

<div class="daohang">
<h2>用户导航</h2>
<hr>
<div class="img">
<a href="http://www.gzcc.cn/html/xueyuanrongyu/">
<img src="http://www.gzcc.cn/2016/images/yhdh/01.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/html/xueyuanrongyu/">公司荣誉</a>
</div>
</div>

<div class="img">
<a href="http://www.gzcc.cn/html/banxuechengguo/">
<img src="http://www.gzcc.cn/2016/images/yhdh/02.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/html/banxuechengguo/">员工获奖</a>
</div>
</div>

<div class="img">

<a href="http://www.gzcc.cn/html/xygk/ldgh/">
<img src="http://www.gzcc.cn/2016/images/yhdh/03.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/html/xygk/ldgh/">上级关怀</a>
</div>
</div>

<div class="img">
<a href="http://i.gzcc.cn" target="_blank">
<img src="http://www.gzcc.cn/2016/images/yhdh/08.jpg"></a>
<div class="desc">
<a href="http://i.gzcc.cn" target="_blank">数字公司</a>
</div>
</div>

<div class="img">

<a href="http://www.gzcc.cn/html/xygk/xiaoyuanfengguang/">
<img src="http://www.gzcc.cn/2016/images/yhdh/05.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/html/xygk/xiaoyuanfengguang/">画说公司</a>
</div>
</div>

<div class="img">

<a href="http://www.gzcc.cn/html/shipinxiaoyuan/">
<img src="http://www.gzcc.cn/2016/images/yhdh/06.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/html/shipinxiaoyuan/">视频公司</a>
</div>
</div>

<div class="img">

<a href="http://www.gzcc.cn/quanjingxiaoyuan/tour.html">
<img src="http://www.gzcc.cn/2016/images/yhdh/07.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/quanjingxiaoyuan/tour.html">公司全景</a>
</div>
</div>

<div class="img">

<a href="http://www.gzcc.cn/html/xiaoyoufengcai/">
<img src="http://www.gzcc.cn/2016/images/yhdh/04.jpg"></a>
<div class="desc">
<a href="http://www.gzcc.cn/html/xiaoyoufengcai/">员工风采</a>
</div>
</div>

</div>

<div id="footer">
版权 © runoob.com
</div>

</div>
</body>
</html>

 

转载于:https://www.cnblogs.com/y550293904/p/7778136.html

你可能感兴趣的文章