您好,登錄后才能下訂單哦!
https://docs.djangoproject.com/en/dev/howto/custom-template-tags/
有一個應用polls結構如下,如何自定義templatetags
polls/ __init__.py models.py templatetags/ __init__.py poll_extras.py views.py
一,安裝polls
INSTALLED_APPS = [ ..... 'polls' ]
在polls目錄下新建一個templatetags目錄,目錄下創建一個空文件__init__.py以讓python識別到其是一個包
from django import templateregister = template.Library() @register.filter(name='cut') def cut(value, arg): return value.replace(arg, '') @register.filter def lower(value): return value.lower()
開啟takes_context,可以訪問當前上下文context
import datetime from django import template register = template.Library() @register.simple_tag(takes_context=True) def current_time(context, format_string):#context接收當前頁面的上下文字典 timezone = context['timezone'] return your_get_current_time_method(timezone, format_string)
#results.html
<ul> {% for choice in choices %} <li> {{ choice }} </li> {% endfor %} </ul>
@register.inclusion_tag('results.html') def show_results(poll): choices = poll.choice_set.all() return {'choices': choices}
{% show_results poll %} //返回如下 <ul> <li>First choice</li> <li>Second choice</li> <li>Third choice</li> </ul>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。