post method doc
This commit is contained in:
parent
96c13fe23c
commit
c3628407eb
@ -51,8 +51,8 @@ app = Sanic('peewee_example')
|
|||||||
|
|
||||||
@app.route('/post')
|
@app.route('/post')
|
||||||
async def post(request):
|
async def post(request):
|
||||||
""" This is actually a GET request, you probably want POST in real life,
|
""" This actually requires a GET request, you probably want POST in real
|
||||||
with some data parameters"""
|
life, with some data parameters"""
|
||||||
obj = await objects.create(KeyValue, key='my_first_async_db', text="I was inserted asynchronously!")
|
obj = await objects.create(KeyValue, key='my_first_async_db', text="I was inserted asynchronously!")
|
||||||
return json({'object_id': obj.id})
|
return json({'object_id': obj.id})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user