作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想让 Capo Mastro 在 Java 中成为可点击的链接,以便在 @ApiOperation 注释中 Swagger ,但我得不到任何结果。
@ApiOperation(
value = "This method updates an existing capo mastro."+" <a href>Capo mastro<a>"+ can be managed only by system",
response = SaveCapoMastroResponse.class
)
如果有人能提供帮助,我将不胜感激!谢谢!
最佳答案
假设您在 Swagger UI 中表示可点击 – 您可以使用 Markdown 语法在操作描述(notes
属性)中添加链接。虽然操作摘要(value
)不支持 Markdown。
@ApiOperation(
value = "This method updates an existing capo mastro.",
notes = "[Capo mastro](http://example.com) can be managed only by system.",
response = SaveCapoMastroResponse.class
)
HTML <a href="">
标记也应该有效,因为 Markdown 支持 HTML。确保转义内部 "
引号。
@ApiOperation(
value = "This method updates an existing capo mastro.",
notes = "<a href=\"http://example.com\" target=\"_blank\">Capo mastro</a> can be managed only by system.",
response = SaveCapoMastroResponse.class
)
关于java - 如何添加 <a href> 链接以使元素在 Java 中可单击以供 Swagger 使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45914783/
我是一名优秀的程序员,十分优秀!