<tfoot id='TJ0z5'></tfoot>
      <bdo id='TJ0z5'></bdo><ul id='TJ0z5'></ul>

    <legend id='TJ0z5'><style id='TJ0z5'><dir id='TJ0z5'><q id='TJ0z5'></q></dir></style></legend>
    1. <i id='TJ0z5'><tr id='TJ0z5'><dt id='TJ0z5'><q id='TJ0z5'><span id='TJ0z5'><b id='TJ0z5'><form id='TJ0z5'><ins id='TJ0z5'></ins><ul id='TJ0z5'></ul><sub id='TJ0z5'></sub></form><legend id='TJ0z5'></legend><bdo id='TJ0z5'><pre id='TJ0z5'><center id='TJ0z5'></center></pre></bdo></b><th id='TJ0z5'></th></span></q></dt></tr></i><div id='TJ0z5'><tfoot id='TJ0z5'></tfoot><dl id='TJ0z5'><fieldset id='TJ0z5'></fieldset></dl></div>

      <small id='TJ0z5'></small><noframes id='TJ0z5'>

      Python 替换 PHP 的标头

      时间:2023-11-30
        • <bdo id='6gOdh'></bdo><ul id='6gOdh'></ul>
              <tbody id='6gOdh'></tbody>
              <legend id='6gOdh'><style id='6gOdh'><dir id='6gOdh'><q id='6gOdh'></q></dir></style></legend>
            1. <i id='6gOdh'><tr id='6gOdh'><dt id='6gOdh'><q id='6gOdh'><span id='6gOdh'><b id='6gOdh'><form id='6gOdh'><ins id='6gOdh'></ins><ul id='6gOdh'></ul><sub id='6gOdh'></sub></form><legend id='6gOdh'></legend><bdo id='6gOdh'><pre id='6gOdh'><center id='6gOdh'></center></pre></bdo></b><th id='6gOdh'></th></span></q></dt></tr></i><div id='6gOdh'><tfoot id='6gOdh'></tfoot><dl id='6gOdh'><fieldset id='6gOdh'></fieldset></dl></div>

              <tfoot id='6gOdh'></tfoot>

                <small id='6gOdh'></small><noframes id='6gOdh'>

              1. 本文介绍了Python 替换 PHP 的标头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何像 PHP 中的 header() 一样在 python 中发送原始 http 标头?

                How to send a raw http header in python just like header() in PHP ?

                推荐答案

                在 Django 中,你会是这样的:

                In Django, you'd be like:

                def someview(request):
                    # ... etc ...
                    out = HttpResponse(outputstring,
                        mimetype="text/html",
                        status_code="302",
                        )
                    out['Content-Disposition'] = "attachment; filename=download.html"
                    # fill in all your favorite HTTP headers here
                    return out
                

                ...对于缓存控制和朋友,您需要导入一堆装饰器并相应地包装您的视图函数(我忘记了) - 这是因为 django 有一个缓存系统,其中包含许多 sub-rosa 位框架已集成.

                ... for cache-control and friends, you need to import a bunch of decorators and wrap your view functions accordingly (I forget which) -- this is because django has a caching system with which many sub-rosa bits of the framework are integrated.

                我发现缓存的东西令人困惑,但也很好.非缓存 HTTP 标头是 E-Z.

                I find the cache stuff confusing, but also nice. non-cache HTTP headers are E-Z.

                这篇关于Python 替换 PHP 的标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:用于 PHP 中 Bing 搜索的 Windows Azure 身份验证 下一篇:PHP 标头重定向到具有时间间隔的多个 URL

                相关文章

                  • <bdo id='lKSZw'></bdo><ul id='lKSZw'></ul>
                1. <small id='lKSZw'></small><noframes id='lKSZw'>

                  <tfoot id='lKSZw'></tfoot>
                  1. <legend id='lKSZw'><style id='lKSZw'><dir id='lKSZw'><q id='lKSZw'></q></dir></style></legend>
                  2. <i id='lKSZw'><tr id='lKSZw'><dt id='lKSZw'><q id='lKSZw'><span id='lKSZw'><b id='lKSZw'><form id='lKSZw'><ins id='lKSZw'></ins><ul id='lKSZw'></ul><sub id='lKSZw'></sub></form><legend id='lKSZw'></legend><bdo id='lKSZw'><pre id='lKSZw'><center id='lKSZw'></center></pre></bdo></b><th id='lKSZw'></th></span></q></dt></tr></i><div id='lKSZw'><tfoot id='lKSZw'></tfoot><dl id='lKSZw'><fieldset id='lKSZw'></fieldset></dl></div>