Swagger-ui anchor link to model definitions(Swagger-ui 锚链接到模型定义)
问题描述
是否可以通过锚点直接访问通过 swagger-ui 的模型定义?
Is it possible to access a model definition of via swagger-ui directly via an anchor?
在示例页面 http://petstore.swagger.io/ 我看到锚适用于一组端点,例如http://petstore.swagger.io/#/pet.
In the example page http://petstore.swagger.io/ I see that the anchor works for a groups of endpoints, e.g. http://petstore.swagger.io/#/pet.
将鼠标悬停在模型描述上会显示一个锚点(例如 Category
模型的 #/definitions/Category
),但是http://petstore.swagger.io/#/definitions/Category 不带我在那里.
Hovering the mouse over a model description shows me an anchor (e.g. #/definitions/Category
for the Category
model), but
http://petstore.swagger.io/#/definitions/Category does not bring me there.
如果我检查元素,我会看到一个指向锚 pet
的真实链接:
If I inspect the elements, I see a real link to anchor pet
:
<a class="nostyle" href="#/pet"><span>pet</span></a>
而对于 Category
这是一个 model-hint:
while for Category
this is a model-hint:
<span class="model-hint">#/definitions/Category</span>
所以我想知道是否支持锚定模型..
So I wonder if anchoring models is supported at all..
推荐答案
Swagger UI 不支持模式/模型的永久链接.有一个现有的功能请求:
https://github.com/swagger-api/swagger-ui/issues/1369
Swagger UI does not support permalinks for schemas/models. There's an existing feature request:
https://github.com/swagger-api/swagger-ui/issues/1369
这篇关于Swagger-ui 锚链接到模型定义的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Swagger-ui 锚链接到模型定义
基础教程推荐
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 动态更新多个选择框 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01