我正在尝试使用ktor
. 我的GET
请求代码是这样的:
val result = httpClient.get<HttpResponse> {
url {
protocol = baseProtocol
host = baseUrl
encodedPath = urlPath
}
}
在某些时候,我的路径包含这样的用户 ID /users/{user_id}
。我可以在字符串中进行搜索和替换并将其替换user_id
为实际值,但是还有其他方法可以做到这一点吗?任何ktor
特定的方式。
例如,Retrofit
我们有这个:
@GET("users/{user_id}/")
SomeData getUserData(@Path("user_id") String userId);
编辑:添加更多代码
val result = httpClient.get<HttpResponse> {
url {
protocol = baseProtocol
host = baseUrl
var requestPath = request.requestPath.value
request.path?.forEach {
requestPath = requestPath.replace(it.first, it.second)
}
encodedPath = requestPath
if (request.parameters != null) {
parameters.appendAll(getParametersFromList(request.parameters))
}
}
request.path?.forEach { requestPath = requestPath.replace(it.first, it.second)}
替换任何运行时路径值。