一,问题描述
问题一:
环境:win10 + pycharm pro 2020.3 + django 3.2.1
我在comment_block.py中创建了一个自定义django模板标签:
from django import template
from testform.models import userInfo
register = template.Library()
@register.inclusion_tag('name.html')
def show_results():
choices = userInfo.objects.all()
return {'choices': choices}
然后在name.html模板中使用这个标签:
{% load comment_block %}
{% show_results %}
<ul>
{% for choice in choices %}
<li> {<!-- -->{ choice }} </li>
{% endfor %}
</ul>
运行时显示显示如下错误:
maximum recursion depth exceeded while calling a Python object
问题二:
环境:Ubuntu 20.10 + pycharm pro 2021. + django 3.1.7
重复执行问题一中的编码,却出现自定义标签所在的commment_block.py文件无法 load 的问题:
二,尝试过的方法
对于问题一,我查询了django文档,并在尝试了简单标签https://docs.djangoproject.com/zh-hans/2.2/howto/custom-template-tags/#simple-tags这个例子的时候正确输出时间。但在尝试使用https://docs.djangoproject.com/zh-hans/2.2/howto/custom-template-tags/#inclusion-tags例子时还是会出现同样的错误。我不太清楚问题出在哪里,是标签的使用方式错误吗?
对于问题二,我在根据文档中https://docs.djangoproject.com/zh-hans/3.2/ref/templates/builtins/#load的做法试了,也无法加载。网上有些博客说有时候可能会发生Load错误,需要重启下服务器,但我重启运行服务器后,问题没得到解决。应该不是什么路径配置有问题吧。
请各位帮帮我看一下怎么处理呢?