哪里& Loopback 4 中计数不能一起实现
我正在实现一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此代码解决:
Solved using this code: