Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 Heroku 上部署一个龙卷风服务器。我目前以标准方式从文件中加载模板。我想从数据库字段而不是文件中加载它们。
我该如何以干净的方式做到这一点?
谢谢!
尝试使用Template而不是Loader。
这将很简单:
from tornado.template import Template t = Template(my_template_string_from_database) r = t.generate(key=value) #as we do in loader
示例未检查,但这样想。不要害怕龙卷风代码 - 它很容易阅读。