我应该使用哪种内容类型标头来协调 MIME 类型?

问题描述 投票:0回答:1

我的 HTML 正在呈现为字符串。 enter image description here

我怀疑这是因为我的内容类型标题设置为 text/* enter image description here (公司要求我需要 x-content-type-options: nosniff ,它需要此内容类型标头)。

如何让它渲染?

我正在使用 Flask 来渲染模板。

@app.route("/")
def hello():
  return render_template('index.html') 
flask response-headers
1个回答
0
投票

应该是

text/html; charset=utf-8

请参阅 Mozilla 的 Content-Type 页面和此所有内容类型列表以供参考。

© www.soinside.com 2019 - 2024. All rights reserved.