OpenAPI docs¶
用于处理 OpenAPI 自动 UI 文档的实用工具,包括 Swagger UI(默认为 /docs)和 ReDoc(默认为 /redoc)。
fastapi.openapi.docs.get_swagger_ui_html ¶
get_swagger_ui_html(
*,
openapi_url,
title,
swagger_js_url="https://cdn.jsdelivr.net.cn/npm/swagger-ui-dist@5/swagger-ui-bundle.js",
swagger_css_url="https://cdn.jsdelivr.net.cn/npm/swagger-ui-dist@5/swagger-ui.css",
swagger_favicon_url="https://fastapi.org.cn/img/favicon.png",
oauth2_redirect_url=None,
init_oauth=None,
swagger_ui_parameters=None
)
生成并返回加载 Swagger UI 的 HTML,用于交互式 API 文档(通常在 /docs 提供服务)。
只有当您需要覆盖某些部分时,例如用于加载 Swagger UI 的 JavaScript 和 CSS 的 URL,您才需要自己调用此函数。
在FastAPI 配置 Swagger UI 文档和FastAPI 自定义文档 UI 静态资源(自托管)文档中阅读更多相关信息。
| 参数 | 描述 |
|---|---|
openapi_url
|
Swagger UI 应该加载和使用的 OpenAPI URL。 这通常由 FastAPI 使用默认 URL
类型: |
title
|
HTML
类型: |
swagger_js_url
|
用于加载 Swagger UI JavaScript 的 URL。 通常设置为 CDN URL。
类型: |
swagger_css_url
|
用于加载 Swagger UI CSS 的 URL。 通常设置为 CDN URL。
类型: |
swagger_favicon_url
|
要使用的 favicon 的 URL。通常显示在浏览器选项卡中。
类型: |
oauth2_redirect_url
|
OAuth2 重定向 URL,通常由 FastAPI 自动处理。
类型: |
init_oauth
|
包含 Swagger UI OAuth2 初始化配置的字典。
类型: |
swagger_ui_parameters
|
Swagger UI 的配置参数。
类型: |
源代码位于 fastapi/openapi/docs.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
fastapi.openapi.docs.get_redoc_html ¶
get_redoc_html(
*,
openapi_url,
title,
redoc_js_url="https://cdn.jsdelivr.net.cn/npm/redoc@2/bundles/redoc.standalone.js",
redoc_favicon_url="https://fastapi.org.cn/img/favicon.png",
with_google_fonts=True
)
生成并返回加载 ReDoc 的 HTML 响应,用于替代 API 文档(通常在 /redoc 提供服务)。
只有当您需要覆盖某些部分时,例如用于加载 ReDoc 的 JavaScript 和 CSS 的 URL,您才需要自己调用此函数。
在FastAPI 自定义文档 UI 静态资源(自托管)文档中阅读更多相关信息。
| 参数 | 描述 |
|---|---|
openapi_url
|
ReDoc 应该加载和使用的 OpenAPI URL。 这通常由 FastAPI 使用默认 URL
类型: |
title
|
HTML
类型: |
redoc_js_url
|
用于加载 ReDoc JavaScript 的 URL。 通常设置为 CDN URL。
类型: |
redoc_favicon_url
|
要使用的 favicon 的 URL。通常显示在浏览器选项卡中。
类型: |
with_google_fonts
|
加载并使用 Google 字体。
类型: |
源代码位于 fastapi/openapi/docs.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |
fastapi.openapi.docs.get_swagger_ui_oauth2_redirect_html ¶
get_swagger_ui_oauth2_redirect_html()
生成带有 Swagger UI OAuth2 重定向的 HTML 响应。
您通常不需要使用或更改此项。
源代码位于 fastapi/openapi/docs.py
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 | |
fastapi.openapi.docs.swagger_ui_default_parameters module-attribute ¶
swagger_ui_default_parameters = {
"dom_id": "#swagger-ui",
"layout": "BaseLayout",
"deepLinking": True,
"showExtensions": True,
"showCommonExtensions": True,
}
Swagger UI 的默认配置。
您可以将其用作模板,添加所需的任何其他配置。