我知道 django 有 WSGI 中间件,但我找不到 webapp2 的任何东西。django 中间件可以工作吗?
问问题
450 次
1 回答
2
要获得 django 通过 webapp2 提供的相同行为,您只需将以下标头添加到响应中:
self.response.headers["X-Frame-Options"] = "SAMEORIGIN"
https://developer.mozilla.org/en-US/docs/HTTP/X-Frame-Options
于 2013-05-14T02:16:27.230 回答