美文网首页
python-Flask(jinja2)语法:URL链接和加载静

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

作者: SmallPot_Yang | 来源:发表于2018-03-31 13:34 被阅读0次

    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') }}">                   
    

    相关文章

      网友评论

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

          本文链接:https://www.haomeiwen.com/subject/klpgcftx.html