sanic-ext
sanic-ext copied to clipboard
[Bug]
Describe the bug
def swagger_auto_scheme(doc_scheme, content_type='application/json', gen_app_headers=True):
def inner(func):
openapi.summary('111111111111111111111111')(func)
openapi.body(content=BaseResponse)(func)
return func
return inner
@swagger_auto_scheme(test)
async def test(request):
pass
Adding body overrides summary and is normal if not added
I want to put the body method in my own decorator, it doesn't seem to work, I don't know why
Hi,
I was looking at the list of bugs and was curious abut this bug with the empty title. I am not (at least yet) a developer with the Sanic project, but at first look I had a hard time seeing even what you want here.
One way you could make yourself clearer is to format your code. I am putting a guess here -- this is done by putting a line ```python
before the code and a line ```
after it:
def swagger_auto_scheme(doc_scheme, content_type='application/json', gen_app_headers=True):
def inner(func):
openapi.summary('111111111111111111111111')(func)
openapi.body(content=BaseResponse)(func)
return func
return inner
@swagger_auto_scheme(test)
async def test(request):
pass
If this is correct than I also have to say, this code looks confusing -- you seem to be both defining a function named test
and using something imported named test
.
@hu0514 what exactly is openapi
? Where are you importing it from? Please include all the imports with your code sample and fill in ALL the fields in the bug report template, such as expected behaviour and explaining how that's different to what's happening.