Django中添加自定义的simple_tag

Django自定义simple_tag时出错如下:

TemplateSyntaxError at /app/

'my_tag' is not a registered tag library. Must be one of:
admin_list
admin_modify
admin_static
admin_urls
cache
i18n
l10n
log
static
staticfiles
tz
xxoo

解决办法:
  在setting.py文件中添加注红部分
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
'libraries':{
"你的自定义标签":"app名.templatetags.自定义函数",
},

},
},
]

注意:

html模板中
{% load 文件名 %} 对应 templatetags中的 py文件名



{% 自定义标签 args %} 对应templatetags下py文件中函数


原文地址:http://blog.51cto.com/zhangrf/2107991


转载于:https://www.cnblogs.com/crazy-xf/p/9309339.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值