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') }}">
网友评论