gpt4 book ai didi

python-2.7 - 什么是 python 相当于 php file_get_contents ("php://input")

转载 作者:太空宇宙 更新时间:2023-11-03 15:36:23 24 4
gpt4 key购买 nike

我正在尝试在 python 中获取发布请求原始数据,谁能告诉我怎么做?或者 Python 中 file_get_contents("php://input") 的等价方法?

最佳答案

要获取 POST 请求的“原始”数据,您可以这样做

class YourRequestHandler(webapp2.RequestHandler):
def post(self):
body = self.request.body

body 现在包含通常存储请求参数的 POST 请求正文。这通常是一个键值对,可以使用 json.loads(self.request.body)

为您翻译成 python 字典

关于python-2.7 - 什么是 python 相当于 php file_get_contents ("php://input"),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36061208/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com