2

我终于注册了,因为我对自己的问题一无所知。我的后端部分使用 asyncio 和 aiohttp,前端部分使用 javascript。但我遇到了 405 错误。(我准确地说我是这些库的初学者)

我希望从发布请求中检索 json。这里的javascript函数:

function postJson (data){

    $.ajax({

           url : 'http://localhost:8080/postJson',
           type : 'POST',
           dataType : 'json',
           contentType : 'application/json',
           data  : data, //data are ready at json format, I do not think I need to use JSON.stringify ? I does not change anything to the error anywhere
           success : function(code_html, statut){ 
             console.log("success POST");
           },

           error : function(resultat, statut, erreur){
             console.log("error POST");
           }

        });
  }

和python代码:

async def postJson(request): 
   data = await request.post()
   #some code
   return Response()


@asyncio.coroutine
def init(loop):
    app = Application(loop=loop)
    app.router.add_route('POST', '/postJson', postJson)

    handler = app.make_handler()
    srv = yield from loop.create_server(handler, '127.0.0.1', 8080)
    print("Server started at http://127.0.0.1:8080")
    return srv, handler

loop = asyncio.get_event_loop()
srv, handler = loop.run_until_complete(init(loop))

try:
    loop.run_forever()
except KeyboardInterrupt:
    loop.run_until_complete(handler.finish_connections())

使用此代码,我收到 405 错误。这里有一点关于请求的萤火虫说:

Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 // so json is not in the list.

但是,如果我在我的 javascript 文件中取回该行contentType : 'application/json',它可以工作(但是请求发送了一个名为的对象MultiDictProxy,我不明白如何使用包中的函数json()aiohttp.webhere

我真的需要一个 json 对象。有人可以帮助我吗?

4

2 回答 2

5

我找到了解决方案。我在这里为可能感兴趣的人发布结论:

蟒蛇方面:

将行替换app.router.add_route('POST', '/postJson', postConf)

app.router.add_route('POST', '/postJson', postConf, expect_handler = aiohttp.web.Request.json)

在 postJson 方法中:

替换data = await request.post()data = await request.json()

在javascript方面:

data  : JSON.stringify(data)

有了这个,我的方法有效。

于 2015-12-15T13:36:34.147 回答
1

您的示例工作正常,除了两件事:

  1. @asyncio.coroutine并且async with是互斥的
  2. postJson()必须返回响应实例,而不是None
于 2015-12-15T12:12:28.803 回答