摘要: ``` def index(request): values = request.META.items() html = [] for k, v in values: html.append('%s%s' % (k, v)) return HttpResponse('%s' % '\n'.join(html)) ``` ![](https://i... 阅读全文
posted @ 2018-12-08 23:06 Rocin 阅读(517) 评论(0) 推荐(0) 编辑