Dart 后台开发 Aqueduct集成Swagger客户端

2021-02-21  本文已影响0人  三只仓鼠

使用下面的命令生成文档

  aqueduct document client

进行代码集成

    router.route("/swagger").linkFunction((request) async {
      final html = await File('client.html').readAsString();
      return Response.ok(html)..contentType = ContentType.html;
    });

完整视频教程查看B站
https://www.bilibili.com/video/av629302008

上一篇下一篇

猜你喜欢

热点阅读