gpt4 book ai didi

Django 模板语法错误

转载 作者:行者123 更新时间:2023-12-04 22:51:45 26 4
gpt4 key购买 nike

下面代码的语法有没有问题,报错如下Invalid block tag: 'else'

{% ifequal chat_profile 1 %}
{% extends "chatprofile/chat_profile1.html" %}
{% else %}
{% extends "chatprofile/chat_profile.html" %}
{% endifequal %}

最佳答案

没错,您必须使用 extends 作为第一个标签,但您也可以将一个变量而不是固定字符串传递给它:

{% extends base %}

然后你可以包含一个名为 base 的上下文变量带有要继承的模板的名称,例如:
    return render_to_response('my_template.html',
{ 'base': 'chatprofile/chat_profile1.html' })

关于Django 模板语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4014156/

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