我目前正在探索如何使用这两个漂亮的工具(Python-flask和Swagger)创建Web API。我的问题是如何在路径中声明多个查询参数?我知道它如何处理一个参数。
我有这个样本:
/surveyData:
get:
operationId: "surveyData.read_surveydata"
summary: Gets the survey data for the client insights tracker.
parameters:
- in: query
name: startDate
type: string
description: The start date of the survey data.
required: true
- in: query
name: endDate
type: string
description: The end date of the survey data.
required: true
我在想这是否是正确的方法?
/surveyData/{startDate}&{endDate}