LoopBack 4 REST API示例,用于使用Mysql获取记录

问题描述 投票:0回答:1

我正在学习loopback 4,我已经创建了模型,存储库和数据源,它还连接到mysql,我可以从http://127.0.0.1:3000/myapi/{id}检索结果

在我的默认示例中,获取id是:

@get('/citySchedule/{id}', {
    responses: {
      '200': {
        description: 'Schedule model instance',
        content: {'application/json': {schema: {'x-ts-type': Schedule}}},
      },
    },
  })
  async findById(@param.path.number('id') id: number): Promise<Schedule> {
    return await this.ScheduleRepository.findById(id);
  }

但是,我没有找到任何获取更多参数数据的教程。

让我们说schedule的mysql表包含列idcity_namecity_codedatetaskitem

例如,我想得到"SELECT task, item FROM schedule WHERE city_code=123 AND date=2019-05-01"

我的问题,如何编写代码以在环回控制器中获取这些数据?任何示例代码......

我的期望,我可以从我的api查询:

http://127.0.0.1:3000/myapi/{city_code}/{date}/获取数据结果或

http://127.0.0.1:3000/myapi/{city_name}/{date}/

mysql node.js typescript loopbackjs strongloop
1个回答
1
投票

如果使用loopback cli生成控制器,则必须在控制器类中使用另一种方法

@get('/citySchedule', {
    responses: {
      '200': {
        description: 'Array of Schedule model instances',
        content: {
          'application/json': {
            schema: {type: 'array', items: {'x-ts-type': Schedule}},
          },
        },
      },
    },
  })
  async find(
    @param.query.object('filter', getFilterSchemaFor(Schedule)) filter?: Filter,
  ): Promise<Schedule[]> {
    return await this.ScheduleRepository.find(filter);
  }

您可以使用此API获取更多过滤数据。

考虑你的例子

SELECT任务,项目FROM schedule WHERE city_code = 123 AND date = 2019-05-01

对于此查询,您需要像这样点击API。

GET /citySchedule?filter=%7B%22where%22%3A%7B%22city_code%22%3A123%2C%22date%22%3A%222019-05-01%22%7D%2C%22fields%22%3A%7B%22task%22%3Atrue%2C%22item%22%3Atrue%7D%7D

这里,过滤器查询参数值实际上是以下json字符串的url编码字符串

{
    "where":{
        "city_code":123,
        "date":"2019-05-01"
    },
    "fields":{
        "task":true,
        "item":true
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.