我设置了一个工作的自定义模板标签,将其注册,可以调用它,它实例化template.Node实例并调用其render()方法。问题是当我返回一个简单的字符串像
def render(self, context):
return 'asd'
它工作正常,但是每当我尝试返回包含html的内容时,它都会失败:
def render(self, context):
return mark_safe('<ul class="jqueryFileTree" style="display: none;"><li><ITEM</li></ul>')
它无声地失败而没有渲染任何东西。有什么帮助吗?
编辑:添加了mark_safe。仍然不起作用
编辑:标签:
import os
import urllib
from django import template
from django.utils.safestring import mark_safe
register = template.Library()
class DirTree(template.Node):
def __init__(self, start_dir):
self.start_dir = start_dir
def render(self, context):
# CODE THAT GENERATES A HTML NESTED LIST
return mark_safe('<ul class="jqueryFileTree"><li><ITEM</li></ul>')
@register.tag
def print_tree(parser, token):
try:
# split_contents() knows not to split quoted strings.
tag_name, start_dir = token.split_contents()
except ValueError:
raise template.TemplateSyntaxError("%r tag requires a single argument" % token.contents.split()[0])
if not (start_dir[0] == start_dir[-1] and start_dir[0] in ('"', "'")):
raise template.TemplateSyntaxError("%r tag's argument should be in quotes" % tag_name)
return DirTree(start_dir[1:-1])
# TEMPLATE.HTML
# HTML 'N STUFF
<div id="file-tree">
{% print_tree "catflow_portal/static/repo/usr/test-user/catalogs/food/" %}
</div>
#END TAGS
最佳答案
我认为您的问题是您需要在模板中使用...|safe
告诉django将结果显示为html,而不是使用"..."
强制将其显示为字符串
https://docs.djangoproject.com/en/1.4/ref/templates/builtins/#safe