Webapp2自定义标签

时间:2012-05-16 12:30:03

标签: google-app-engine webapp2

我正在从webapp1迁移到webapp2,从python 2.5迁移到python2.7 我有一些与

一起使用的自定义标签
webapp.template.register_template_library('common.templatetags')

并注册:

from google.appengine.ext.webapp import template
register = template.create_template_register()

和相应的装饰器和其他一切正常

现在我需要使用没有template.register .....的webapp2。

我试过这样做:http://www.john-smith.me/Tag/webapp2 但它没有用

感谢

1 个答案:

答案 0 :(得分:-1)

使用add_to_builtins()

解决
from django.template.loader import add_to_builtins

add_to_builtins('myapp.templatetags.mytagslib')