我正在从 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 但它没有用
谢谢