**TemplateSyntaxError at /shop/** 无法解析其余部分:'' from 'product
P粉269847997
P粉269847997 2023-09-15 16:44:57
0
1
537

以下链接是我的index.html的要点链接

https://gist.github.com/MahdinOhi/b083179a8261b1d89291b69f6d66d5c8

这是我的index.html 代码,我收到此代码的错误: /shop/ 处的 TemplateSyntaxError 无法解析其余部分: 'product[1:] 中的 '[1:]' 而且我的轮播卡是没有以正确的方式(我认为这是 CSS 的错误)这是我收到的错误(Jpg 格式):

我想从数据库中获取产品名称和图像。

我需要解决该错误。我想改进我的 CSS。

P粉269847997
P粉269847997

全部回复(1)
P粉982881583

问题在于

{% for i in product[1:] %}
  .....
{% endfor %}

product[1:] django 模板不直接支持此功能。相反,您可以尝试 slice

{% for i in product|slice:"1:" %}

  ... Rest of your template codes

{% endfor %}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板