我的 HTML 正在呈现为字符串。
我怀疑这是因为我的内容类型标题设置为 text/* (公司要求我需要 x-content-type-options: nosniff ,它需要此内容类型标头)。
如何让它渲染?
我正在使用 Flask 来渲染模板。
@app.route("/") def hello(): return render_template('index.html')
应该是
text/html; charset=utf-8
请参阅 Mozilla 的 Content-Type 页面和此所有内容类型列表以供参考。