一個(gè)好的Django專題少不了您的貢獻(xiàn):點(diǎn)我進(jìn)入專題
自動(dòng)生成的API文檔參數(shù)不夠用枷恕?自己造作呀~(如果有更好的實(shí)現(xiàn)歡迎投稿)
GET 有兩個(gè)方法(list(path:/api/mall/)與retrieve(path:/api/mall/{id}/)生成的)胆屿,所以and雙重判斷路徑
官方教程地址: autoschema
from ..mlogger import mlogger # 自定義的日志過濾器
import coreapi
from rest_framework.schemas import AutoSchema
# 自定義額外的參數(shù)
class MallViewSchema(AutoSchema):
def get_manual_fields(self, path, method):
mlogger.info('path:' + path)
mlogger.info('method:' + method)
extra_fields = []
if method == 'GET' and path == '/api/mall/':
extra_fields = [
coreapi.Field(
"sss",
required=False,
location="path",
description='Cissty',
),
]
manual_fields = super().get_manual_fields(path, method)
return manual_fields + extra_fields