这是我在 data.yaml 中的补丁请求映射
request:
url: ^/api/test
method: PATCH
headers:
Content-Type: application/json
response:
headers:
Content-Type: application/json
status: 200
file: response/test-1.json
api 路径 api/test 是一个 PATCH 请求,它在其主体 {testVar: "1111"} 中接受单个请求参数
我需要实现的是当请求参数为 {testVar: "1111"} -> 请求参数为 {testVar: "2222"} 时调用 response/test-1.json -> 调用 response/test-2.json
如何实施?
我尝试了查询参数、请求参数等,但没有运气