我正在尝试使用 Pylons 中的中间件修改标头,以使我的应用程序 RESTful,基本上,如果用户"application/json"
通过GET
它请求是他得到的。
我的问题是,变量headers
基本上是一个很长的列表。看起来像这样:
[('Content-Type', 'text/html; charset=utf-8'), ('Pragma', 'no-cache'), ('Cache-Control', 'no-cache'), ('Content-Length','20'), ('Content-Encoding', 'gzip')]
现在,我只想根据请求修改值 - 但这些位置是否固定?将'Content-Type'
永远是位置headers[0][0]
?
最好的祝福,
安德斯