他的回复:
EdgeService默认只转发后端契约声明了的参数。 比如这样一个REST接口方法,契约上只声明了query参数,所以EdgeService网关只转发这一个query,如果你调用的url是 /hello?name=Bob&age=22 , 网关转发给后端的url就会变成 /hello?name=Bob ```yaml /hello: get: operationId: "sayHello" parameters: - name: "name" in: "query" required: false type: "string" responses: 200: de**Script**ion: "response of 200" schema: type: "string" ```