Tornado应用程序/JSON支持

Tornado application/json support(Tornado应用程序/JSON支持)
本文介绍了Tornado应用程序/JSON支持的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Tornado支持Content-Type "application/json"吗?

根据调用堆栈(假设stream_request_body = False),唯一被调用来解析请求体的方法是parse_body_arguments(httputil.py 662),它只接受"application/x-www-form-urlencoded""multipart/form-data"

推荐答案

解决方案非常简单。您只需json.loads()接收到的正文,并相信它是一个适当的JSON编码的字典(如果您愿意,捕获异常并提供有意义的反馈)。在已经application/x-www-form-urlencoded的帖子中,您不能期望application/jsonContent-Type中。

以下是一个示例服务器:

import json
import tornado.httpserver
import tornado.ioloop
import tornado.web

class MyHandler(tornado.web.RequestHandler):
    def post(self):
        data = json.loads(self.request.body.decode('utf-8'))
        print('Got JSON data:', data)
        self.write({ 'got' : 'your data' })

if __name__ == '__main__':
    app = tornado.web.Application([ tornado.web.url(r'/', MyHandler) ])
    http_server = tornado.httpserver.HTTPServer(app)
    http_server.listen(8888)
    print('Starting server on port 8888')
    tornado.ioloop.IOLoop.instance().start()

您可以使用curl

进行测试
curl -H 'Content-Type: application/json' -d '{"hello": "world"}' http://localhost:8888/

这篇关于Tornado应用程序/JSON支持的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Make gRPC messages JSON serializable(使GRPC消息JSON可序列化)
Send plain JSON to a gRPC server using python(使用Python将纯JSON发送到GRPC服务器)
how to iterate through geojson elements(如何循环访问Geojson元素)
how to validate properties key in a geojson(如何验证Geojson中的属性密钥)
Python JSONDecoder custom translation of null type(空类型的Python JSONDecoder自定义翻译)
Splitting a MultiPolygon(拆分多重多边形)