Api Document

Download Markdown Version
  • Toc Index
  • {% for bp in gen.blueprint_ins %}
  • {{ bp.name }}
  • {% for f in bp.funcs %}
  • [#{{f.uid}}] {{ f.link() | safe }}
  • {% endfor %} {% endfor %}
公共认证Header
{% for bp in gen.blueprint_ins %}
{{ bp.name }}
{% for f in bp.funcs %} {{ f.anchor() | safe }}
[#{{f.uid}}] {{ f.name }}
{% if f.has_content %}
{{ f.content }}
{% endif %}
URL
{{ f.url | escape }}
HTTP Method
{{ f.method }}
{% if f.url_params %}
URL Parameters
{% for k, v in f.url_params.iteritems() %} {% for col in v %} {% endfor %} {% endfor %}
Name Type Description
{{ col }}
{% endif %} {% if f.query_params %}
QueryString
{% for row in f.query_params %} {% for col in row.get_arr()%} {% endfor %} {% endfor %}
Name Require Type Description
{{ col }}
{% endif %} {% if f.form_params %}
Forms
{% for row in f.form_params %} {% for col in row.get_arr()%} {% endfor %} {% endfor %}
Name Require Type Description
{{ col }}
{% endif %}
Return Value
{{ f.return_value() }}
{% endfor %} {% endfor %}