/cart/ 处的TemplateSyntaxError 无效过滤器:“mul”请求

问题描述 投票:0回答:1

/cart/ 处的模板语法错误 无效的过滤器:“mul” 请求方式:GET 请求网址:http://127.0.0.1:8000/cart/ Django 版本:5.0.6 异常类型:TemplateSyntaxError 异常值:
无效的过滤器:“mul” 异常位置:C:\Users\denni\Desktop\Foods1 env\Lib\site-packages\django emplate ase.py,第 603 行,在 find_filter 中 期间引发:Foodies.views.view_cart Python 可执行文件:C:\Users\denni\Desktop\Foods1 env\Scripts\python.exe Python版本:3.11.7 Python路径:
['C:\Users\denni\Desktop\Foods1\Foods', 'C:\Users\denni\AppData\Local\Programs\Python\Python311\python311.zip', 'C:\Users\denni\AppData\Local\Programs\Python\Python311\DLLs', 'C:\Users\denni\AppData\Local\Programs\Python\Python311\Lib', 'C:\Users\denni\AppData\Local\Programs\Python\Python311', 'C:\Users\denni\Desktop\Foods1 env', 'C:\Users\denni\Desktop\Foods1 env\Lib\site-packages'] 服务器时间:2024年5月13日周一11:01:44 +0000 模板渲染时出错

我想点击立即购买后应该给我结果

django
1个回答
0
投票

您的模板中使用了名为“mul”的过滤器,该过滤器不是有效的过滤器名称。您需要使用

{% load %}
导入它或修复名称中的拼写错误。

© www.soinside.com 2019 - 2024. All rights reserved.