我终于注册了,因为我对自己的问题一无所知。我的后端部分使用 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.web
here )。
我真的需要一个 json 对象。有人可以帮助我吗?