0

我为 RESTful 服务创建了一个 OpenAPI JSON 文档,并使用 ReDoc 来显示它。

有没有办法在不使用 JSON 文件或 URL 的情况下将 OpenAPI 规范作为 JSON 对象直接传递给 ReDoc?

<!DOCTYPE html>
<html>
  <head>
    <title>ReDoc</title>
    ...
  </head>
  <body>

    <redoc spec = {{object}} ></redoc>  <----------- Is this possible?

    <script src="/doc/bundles/redoc.standalone.js"> </script>
  </body>
</html>
4

1 回答 1

0

是的。您可以传递 json 对象或 URL。

于 2021-10-21T23:05:58.873 回答