source:https://docs.djangoproject.com/en/dev/howto/custom-template-tags/
如果想对一个值进行过滤,当然用的是filter
但是会有这样的逻辑:
当前页面有一个product对象和user对象,两个对象是多对多关系,所以会有一个关系表,我想以指定的逻辑去查询这个关系表的数据。
做法:
a 在views中实现指定的逻辑,直接render_to_response出来一些变量。
b custom tag中实现指定的逻辑
其中b
在http://djangobook.py3k.cn/2.0/chapter09/
中有说明。
这里说一特别的地方:
使用custom tag的时候,传入的option 都是普通的string,如果传入的是object,要这么做
def __init__(self, date_to_be_formatted, format_string):
self.date_to_be_formatted = template.Variable(date_to_be_formatted)
self.format_string = format_string
def render(self, context):
try:
actual_date = self.date_to_be_formatted.resolve(context)
return actual_date.strftime(self.format_string)
except template.VariableDoesNotExist:
return ''
这个django doc 上的说明代码,用到的是template.Variable(),和template.Variable().resolve(context)
其中,django源码中的Variable 类的说明有如下:
r"""
a hard-coded string (if it begins and ends with single or double quote
marks)::
>>> c = {'article': {'section':u'News'}}
>>> Variable('article.section').resolve(c)
u'News'
>>> Variable('article').resolve(c)
{'section': u'News'}
>>> class AClass: pass
>>> c = AClass()
>>> c.article = AClass()
>>> c.article.section = u'News'
(The example assumes VARIABLE_ATTRIBUTE_SEPARATOR is '.')
"""
其中要说明的是resolve方法。
应该我遇到一个问题,就是:context_instance=RequestContext(request)的时候,会有一个全局的User对象和AnonymousUser对象。
如果我以
{%customtag user%}
那么resolve返回的是user对象
{%customtag user.email%}
resolve 返回的是user.email的值了!
OK,一切OK了。