Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从此 CURL 语句中获取 POST 数据:
curl -d 'DATA HERE' http://localhost:8888/
我找不到执行此操作的方法,目前我在 POST 请求中使用了一个参数:
curl -d 'data=test' http://localhost:8888/
这是检索数据:
postData = self.get_argument('data', 'No data')
这很好用,但我不想指定 POST 参数。
来自发布请求的原始正文在self.request.body
self.request.body