哪里& Loopback 4 中计数不能一起实现

发布于 2025-01-16 09:22:40 字数 495 浏览 2 评论 0原文

我正在实现一个API,可以取出user_id:user_id的所有数据 但它不起作用请帮助我实现同样的功能。

这是我的 Follow_api 控制器的代码:

@get('/follow-masters/count/{id}')
  @response(200, {
    description: 'FollowMaster model count',
    content: {'application/json': {schema: CountSchema}},
  })
  async findCount(
    @param.path.string('user_id') user_id: string,
    @param.where(FollowMaster) where?: Where<FollowMaster>,
  ): Promise<Count> {
    return this.followMasterRepository.count();
  }

I am implementing an API that can take out all the data where user_id: user_id
but it is not working please help me to implement the same.

here is my code of Follow_api controller:

@get('/follow-masters/count/{id}')
  @response(200, {
    description: 'FollowMaster model count',
    content: {'application/json': {schema: CountSchema}},
  })
  async findCount(
    @param.path.string('user_id') user_id: string,
    @param.where(FollowMaster) where?: Where<FollowMaster>,
  ): Promise<Count> {
    return this.followMasterRepository.count();
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2025-01-23 09:22:40

使用此代码解决:

@get('/follow-masters/count/{user_id}')
  @response(200, {
    description: 'FollowMaster model count',
    content: {'application/json': {
      schema: FollowMaster
    }
  },
  })
  async findCount(
    @param.path.string('user_id') user_id: string,
    @param.where(FollowMaster) where?: Where<FollowMaster>,
  ): Promise<NonVoid> {
    return this.followMasterRepository.find({
      where: {
        user_id: user_id, ...where,
      },
    });
  }

Solved using this code:

@get('/follow-masters/count/{user_id}')
  @response(200, {
    description: 'FollowMaster model count',
    content: {'application/json': {
      schema: FollowMaster
    }
  },
  })
  async findCount(
    @param.path.string('user_id') user_id: string,
    @param.where(FollowMaster) where?: Where<FollowMaster>,
  ): Promise<NonVoid> {
    return this.followMasterRepository.find({
      where: {
        user_id: user_id, ...where,
      },
    });
  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文