在使用 Mountebank 工具模拟数据期间使用查询获取响应时遇到问题:
以下是我厌倦的链接:
GET:http://localhost:6173/entities/?key=first
我想得到“第二个”回应,但我得到的是:“没有回应”。
{
"port": 6173,
"protocol": "http",
"stubs": [
{
"predicates": [
{
"equals": {
"path": "/entities",
"query": {
"key":"first"
},
"method": "GET",
"headers": {
"Content-Type": "application/json"
}
}
}
],
"responses": [
{
"is": {
"statusCode": 200,
"headers": {
"Content-Type": "application/json"
},
"body": [
{
"id": "second"
}
]
}
}
]
},
{
"responses": [
{
"is": { "statusCode": 404 }
}
]
}
]
}
实际回应:无回应
预期反应:第二