gpt4 book ai didi

python - 在 Django 模板中添加两个变量?

转载 作者:太空宇宙 更新时间:2023-11-04 10:09:55 25 4
gpt4 key购买 nike

{% with a=pro_details.product_quantity|add:product_details.product_quantity %}

我需要使用 with 和 add 在 django 模板中添加两个变量。

最佳答案

您可以使用自定义模板标签来实现。

templatetags/custom_tags.py 文件:

from django import template

register = template.Library()

@register.simple_tag
def add(a, b):
return a+b

模板部分,带有我们的标签调用:

{% load video_tags %}

(你想使用的地方)

{% add 5 6 %}

您也可以引用此链接。 https://docs.djangoproject.com/en/1.10/howto/custom-template-tags/

关于python - 在 Django 模板中添加两个变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38995503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com