thx / rap2-delos

阿里妈妈前端团队出品的开源接口管理工具RAP第二代
http://rap2.taobao.org
MIT License
7.64k stars 1.35k forks source link

rest 风格使用pathvariable,无法使用$varName$读取变量 #822

Closed baymax55 closed 2 years ago

baymax55 commented 3 years ago

rest 风格使用pathvariable,无法使用$varName$读取变量 请求url: xxxxx.com:38080/app/mock/17/clear/{varName} 无法通过 $varName$ 读取varName值.

复现步骤 xxxxx.com:38080/app/mock/17/clear/123

期望结果

{ "code": 200, "msg": 123, "success": true, }

实际结果

{ "code": 200, "msg": "varName", "success": true, }