我很担心后端/前端开发人员如何为Flask + jinja2应用程序一起工作。
如果仅通过GraphQL / REST API公开后端,则您具有架构定义/ Swagger。
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/some-route")
def index():
"""Help the user to achieve foobar."""
return render_template('template-file.html',
foo='bar')
需要文档的东西
'template-file.html'
)创建哪个模板文件?foo
)及其类型/潜在值还是不起作用,前端开发人员必须检查路由?