{{ handler_name }}

{% if description %}
描述
{{ description }}
{% endif %} 请求地址
{{ method }} {{ url }}
支持请求类型
{{ support_methods | join(' ') }}
{% if field_info %} 参数列表 {% for name, info in field_info.items() %} {% for key in ('description', 'type', 'required', 'default', 'help_text', 'ex_info') %} {% endfor %} {% endfor %}
参数名称类型是否必填默认值说明限制
{% if info.required %} *{{ name }}* {% else %} [{{ name }}] {% endif %} {{ info.get(key, '') }}
{% endif %} 返回结果
{{ res_data | to_json(indent=4, ensure_ascii=False) }}
{% if return_sample %}
返回格式说明
{{ return_sample | to_json(indent=4, ensure_ascii=False) }}
{% endif %} {% if remark %}
备注
{{ remark }}
{% endif %}