Django:TemplateSyntaxError - 无法解析余数 [重复]

Django: TemplateSyntaxError - Could not parse the remainder [duplicate]

提问人:Aminul Islam 提问时间:2/8/2023 更新时间:9/21/2023 访问量:1320

问:

异常值:Could not parse the remainder: '['image/jpeg',' from '['image/jpeg','

为什么我在下面的代码中得到这个?TemplateSyntaxError

{% for file in resource.files.all %}

        {% if file.file.content_type|lower in ['image/jpeg', 'image/png', 'image/gif'] %}
          <a class="resource-image" title="{{ file.id }}" href="{{ file.file.url }}">
            <img width="100%" src="{{ file.file.url }}" alt="{{ file.id }} Image"/>
          </a>

        {% elif file.file.content_type|lower in ['video/mp4', 'video/wmv', 'video/mkv', 'video/x-flv', 'video/webm', 'video/mpeg'] %}
          <video width="100%" controls>
            <source src="{{ file.file.url }}">
          </video>

        {% elif file.file.content_type|lower in ['audio/mp4', 'audio/m4a', 'audio/wav', 'audio/x-wav', 'audio/ogg'] %}
          <audio width="100%" controls>
            <source src="{{ file.file.url }}">
          </audio>

        {% elif file.file.content_type|lower in ['application/pdf'] %}
          <!-- <embed src="{{ file.file.url }}" width="800px" height="2100px" /> -->

        {% endif %}

        <p class="small text-muted">{{ file.id }}</p>

{% endfor %}

我已经检查了整个模板文件,所有括号都是平衡的。我找不到任何语法错误。

python html django django 模板 语法错误

评论


答:

2赞 Andros Fenollosa 2/8/2023 #1

不能在模板系统内创建列表或元组。在 Python 中声明并将它们作为函数中的迭代器发送。render()

from django.shortcuts import render

def my_view(request):
    list_types = ['image/jpeg', 'image/png', 'image/gif']
    return render(request, 'index.html', {
        'list_types': list_types,
    })

评论

0赞 Aminul Islam 2/9/2023
多谢!实际上,ChatGPT 建议我可以直接在模板中进行操作。但是,我使用的是基于类的视图。我应该用同样的事情吗?get_context_data()