python-Flask(jinja2)语法:URL链接和加载静

2018-03-31  本文已影响0人  SmallPot_Yang

URL链接和加载静态文件

[TOC]

通用语法

url_for('static', filename='xxx路径')

url跳转

视图函数代码:

@app.route('/login/')
def login_function():
    return render_template('login,html')

html代码:

<a href = "{{ url_for('login_function') }}">点我跳转</a>

加载静态文件

语法: {{ url_for('static',filename=''css/index.css) }}

<!--加载css,js,img-->
<link rel="stylesheet" href="{{ url_for('static',filename='css/index.css') }}">     
<img src="{{ url_for('static',filename='images/logo.png') }}">              
<script src="{{ url_for('static',filename='js/index.js') }}">                   
上一篇下一篇

猜你喜欢

热点阅读