2 Matching Annotations
  1. May 2023
    1. Sharing models

      This looks worth trying as an alternative to generating types from inspecting the schema from a running API instance.

  2. Jun 2020
    1. This issue comes from the axios library. In order to fix that, you have to pull out the data property: return this.httpService.post(...) .pipe( map(response => response.data), );

      这是 nest.js 常见错误,获取数据后需要做 map 处理