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.
我正在用flask-python开发一个网站。我在一个变量中创建了一个html文件。我可以渲染这个变量而不是写render_template('index.html')吗?这是我的代码:
replacedView = rc.replaceActions()
现在replacedView有一个html文件的代码。我的目的是说jinja2渲染这个。可能吗?
我已经解决了我的问题。答案很简单。最后我有一个变量,里面有 html。所以我返回了它。所以有它!
return replacedView