支持设置path param value

This commit is contained in:
白茶清欢 2024-06-11 16:27:35 +08:00
parent bab271d562
commit 3504899a5d
1 changed files with 7 additions and 1 deletions

View File

@ -39,6 +39,12 @@ func NewRestyClient(reqConfig *define.Request) (*resty.Client, *resty.Request) {
request.SetQueryParams(reqConfig.Query) // 设置query参数
request.SetHeaders(reqConfig.Header) // 设置header
request.URL = reqConfig.FullUrl // 请求接口
for pathParamName, pathParamValue := range reqConfig.PathParam {
if len(pathParamValue) == 0 {
continue
}
reqConfig.FullUrl = strings.ReplaceAll(reqConfig.FullUrl, "{#"+pathParamName+"#}", pathParamValue)
}
request.Method = reqConfig.Method // 请求方法
cookieList := make([]*http.Cookie, 0)
for cookieName, cookieValue := range reqConfig.Cookie {