0

我正在使用Azure Functions 无服务器插件。

我正在从 apim 中提取 openapi 规范。使用路径参数有据可查,并且在我导出时可以正常工作。请参阅其中一个演示应用程序的示例:https ://github.com/wbreza/multicloud-demo/blob/master/serverless-azure.yml#L112

getProductListByCategory:
  handler: src/handlers/products.getProductListByCategory
  events:
    - http: true
      x-azure-settings:
        methods:
          - GET
        route: categories/{categoryId}/products
        authLevel: anonymous
  apim:
    api: categories-api
    backend: categories-backend
    operations:
      - method: GET
        urlTemplate: /{categoryId}/products
        templateParameters:
          - name: categoryId
            type: string

但是,我无法找到如何在无服务器中指定或声明查询字符串参数

这可以做到吗?

4

0 回答 0