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.
是否可以将 Tornado 和 Flask 网页模板结合在一起?
例如:使用 Index.html 作为扩展的“基础”模板设置块:
然后,使用 Flask 中的“block”扩展索引以获取 Flask Routes 然后,使用 Tornado 中的“block”扩展索引以获取 Tornado Routes..
Tornado 模板使用类似于 Jinja 的语法,但渲染引擎不是 Jinja。您也许可以侥幸逃脱,但您必须跟踪哪些模板是 Jinja,哪些是 Tornado。
为了理智起见,请将它们分开。
您没有绑定到 Flask 中的默认模板引擎。也许您可以以某种方式在 Flask 中使用 Tornado 的模板引擎,然后可以在两者中使用模板。