官术网_书友最值得收藏!

Creating a custom context processor

Sometimes, we might want to calculate or process a value directly in the templates. Jinja2 maintains a notion that the processing of logic should be handled in views and not in templates, and thus, it keeps the templates clean. A context processor becomes a handy tool in this case. We can pass our values to a method; this will then be processed in a Python method, and our resultant value will be returned. Therefore, we are essentially just adding a function to the template context (thanks to Python for allowing us to pass around functions just like any other object).

How to do it…

Let's say we want to show the descriptive name of the product in the format Category / Product-name:

@product_blueprint.context_processor:
def some_processor():
    def full_name(product):
        return '{0} / {1}'.format(product['category'], product['name'])
    return {'full_name': full_name}

A context is simply a dictionary that can be modified to add or remove values. Any method decorated with @product_blueprint.context_processor should return a dictionary that updates the actual context.

We can use the preceding context processor as follows:

{{ full_name(product) }}

We can add this to our app for the product listing (in the flask_app/my_app/templates/product.html file) in the following manner:

{% extends 'home.html' %}

{% block container %}
  <div class="top-pad">
    <h4>{{ full_name(product) }}</h4>
    <h1>{{ product['name'] }}
      <small>{{ product['category'] }}</small>
    </h1>
    <h3>$ {{ product['price'] }}</h3>
  </div>
{% endblock %}

The resulting parsed HTML page will look like the following screenshot:

See also

  • Have a look at the Block composition and layout inheritance recipe to understand the context of this recipe
主站蜘蛛池模板: 桑植县| 秦皇岛市| 师宗县| 遵义县| 保靖县| 龙泉市| 威信县| 鄱阳县| 义马市| 龙川县| 九龙坡区| 文安县| 阿拉善盟| 穆棱市| 凌海市| 额尔古纳市| 安仁县| 湄潭县| 阿拉善右旗| 云浮市| 浮山县| 灵宝市| 嘉义县| 湘潭县| 政和县| 榆树市| 格尔木市| 玛纳斯县| 万州区| 呼和浩特市| 石家庄市| 海晏县| 红安县| 樟树市| 光山县| 红安县| 栾川县| 太和县| 游戏| 安溪县| 阿克|