我正在从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 但它没有用
感谢
答案 0 :(得分:-1)
使用add_to_builtins()
解决from django.template.loader import add_to_builtins
add_to_builtins('myapp.templatetags.mytagslib')