码迷,mamicode.com
首页 > 其他好文 > 详细

自定义simple_tag

时间:2019-03-23 00:55:30      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:int   def   col   定义   对象   simple   创建   color   load   

1.在app目录下创建目录templatetags

2.创建任意py文件 ooxx.py

3.创建template对象 register

from django import template

register = template.Library()

@register.simple_tag
def func(*args):
    print(args) 

4. 在html顶部 {% load ooxx %}

5. 调用{% func arg1 argn %}

 

自定义simple_tag

标签:int   def   col   定义   对象   simple   创建   color   load   

原文地址:https://www.cnblogs.com/ray-mmss/p/10582060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!