有没有办法在Mountbank中传递路径参数



我试图使用Mountebank传递路径参数。

下面是工作,但有路径是静态的,没有任何参数。

"predicates": [
{
"equals": {
"method": "GET",
"path": "/accounts",
"query": {
"permissionId": "xxx"
}
}
}
],
"responses": [
{
.....            }
]

如果我需要做GET /accounts/[account-no],其中account-no是参数

下面的正则表达式有效,请注意在正则表达式的情况下使用matches而不是equal

"predicates": [
{
"matches": {
"method": "GET",
"path": "/accounts/\d+",
"query": {
"permissionId": "xxx"
}
}
}
],
"responses": [
{
.....            }
]

相关内容

  • 没有找到相关文章

最新更新