1. <i id='JQVgt'><tr id='JQVgt'><dt id='JQVgt'><q id='JQVgt'><span id='JQVgt'><b id='JQVgt'><form id='JQVgt'><ins id='JQVgt'></ins><ul id='JQVgt'></ul><sub id='JQVgt'></sub></form><legend id='JQVgt'></legend><bdo id='JQVgt'><pre id='JQVgt'><center id='JQVgt'></center></pre></bdo></b><th id='JQVgt'></th></span></q></dt></tr></i><div id='JQVgt'><tfoot id='JQVgt'></tfoot><dl id='JQVgt'><fieldset id='JQVgt'></fieldset></dl></div>
    2. <small id='JQVgt'></small><noframes id='JQVgt'>

      1. <tfoot id='JQVgt'></tfoot>

        <legend id='JQVgt'><style id='JQVgt'><dir id='JQVgt'><q id='JQVgt'></q></dir></style></legend>
          <bdo id='JQVgt'></bdo><ul id='JQVgt'></ul>

        Jinja2 中 url_for() 中的块标记

        Block tag inside url_for() in Jinja2(Jinja2 中 url_for() 中的块标记)

      2. <legend id='pQk8e'><style id='pQk8e'><dir id='pQk8e'><q id='pQk8e'></q></dir></style></legend>

          <small id='pQk8e'></small><noframes id='pQk8e'>

            <bdo id='pQk8e'></bdo><ul id='pQk8e'></ul>
              1. <tfoot id='pQk8e'></tfoot>
                  <tbody id='pQk8e'></tbody>
                <i id='pQk8e'><tr id='pQk8e'><dt id='pQk8e'><q id='pQk8e'><span id='pQk8e'><b id='pQk8e'><form id='pQk8e'><ins id='pQk8e'></ins><ul id='pQk8e'></ul><sub id='pQk8e'></sub></form><legend id='pQk8e'></legend><bdo id='pQk8e'><pre id='pQk8e'><center id='pQk8e'></center></pre></bdo></b><th id='pQk8e'></th></span></q></dt></tr></i><div id='pQk8e'><tfoot id='pQk8e'></tfoot><dl id='pQk8e'><fieldset id='pQk8e'></fieldset></dl></div>
                • 本文介绍了Jinja2 中 url_for() 中的块标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在使用 Jinja2 来呈现我的前端(而 python 在后端).每个页面的顶部都会有不同的图像,如下所示:

                  I'm using Jinja2 to render my frontend (and python is on the backend). Each page will have a different image on its top, like this:

                  <header>
                      <img src="static/img/pic1.png">
                  </header>
                  

                  我使用 url_for() 来获取我的静态文件夹的正确路径:

                  I used url_for() to get the correct path of my static folder:

                  <header>
                      <img src="{{ url_for('static', filename='img/pic1.png') }}"> 
                  </header>
                  

                  到目前为止,一切都很好.但是我想在文件名参数中放置一个块,这样我就可以重用代码并且只覆盖图像的名称.这就是我正在尝试的:

                  So far, so good. But I would like to put a block inside the filename parameter, so I can reuse the code and only overwrite the name of the image. This is what I'm trying:

                  <header>
                      <img src="{{ url_for('static', filename='{% block img %}img/pic1.png{% endblock %}') }}">
                  </header>
                  

                  但是不行,这是Jinja2渲染的最终代码:

                  But it doesn't work, this is the final code that is rendered by Jinja2:

                  <header>
                      <img src="/static/%7B%25%20block%20img%20%25%7Dimg/pic1.png%7B%25%20endblock%20%25%7D">
                  </header>
                  

                  如您所见,Jinja2 不将 block 标签识别为表达式,而是将其视为字符串.如果可行,我将能够仅使用此代码设置每个页面的图片:

                  As you can see, Jinja2 doesn't recognize the block tag as an expression and treats it as a string. If it worked, I would be able to set the picture of each page only using this code:

                  {% extends "base.html" %}
                  {% block img %}img/pic2.png{% endblock %}
                  ...
                  

                  有人可以帮忙吗?顺便说一句,这篇帖子对我没有帮助.

                  Could someone help, please? By the way, this post didn't help me.

                  推荐答案

                  你需要一个来在你的模板中定义一种函数.请参阅此主题http://jinja.pocoo.org/docs/dev/templates/p>

                  What you need is a macro to define a kind of function in your template. See this topic in http://jinja.pocoo.org/docs/dev/templates/

                  {% macro header_img(name) -%}
                      <img src="{{ url_for('static', filename=name) }}">
                  {%- endmacro %}
                  

                  您可以将此宏放在 util 模板中,然后将其 import每一页.

                  You can put this macro in an util template and import it in each page.

                  使用语法:

                  <header>{{ header_img("your_image.jpg") }}</header>
                  

                  这篇关于Jinja2 中 url_for() 中的块标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Initialize Multiple Numpy Arrays (Multiple Assignment) - Like MATLAB deal()(初始化多个 Numpy 数组(多重赋值) - 像 MATLAB deal())
                  How to extend Python class init(如何扩展 Python 类初始化)
                  What#39;s the difference between dict() and {}?(dict() 和 {} 有什么区别?)
                  What is a wrapper_descriptor, and why is Foo.__init__() one in this case?(什么是 wrapper_descriptor,为什么 Foo.__init__() 在这种情况下是其中之一?)
                  Initialize list with same bool value(使用相同的布尔值初始化列表)
                  setattr with kwargs, pythonic or not?(setattr 与 kwargs,pythonic 与否?)

                    <legend id='RfHTb'><style id='RfHTb'><dir id='RfHTb'><q id='RfHTb'></q></dir></style></legend>
                  1. <tfoot id='RfHTb'></tfoot>
                      <tbody id='RfHTb'></tbody>

                      • <small id='RfHTb'></small><noframes id='RfHTb'>

                          <bdo id='RfHTb'></bdo><ul id='RfHTb'></ul>
                          1. <i id='RfHTb'><tr id='RfHTb'><dt id='RfHTb'><q id='RfHTb'><span id='RfHTb'><b id='RfHTb'><form id='RfHTb'><ins id='RfHTb'></ins><ul id='RfHTb'></ul><sub id='RfHTb'></sub></form><legend id='RfHTb'></legend><bdo id='RfHTb'><pre id='RfHTb'><center id='RfHTb'></center></pre></bdo></b><th id='RfHTb'></th></span></q></dt></tr></i><div id='RfHTb'><tfoot id='RfHTb'></tfoot><dl id='RfHTb'><fieldset id='RfHTb'></fieldset></dl></div>