本文整理了Java中io.vertx.ext.web.client.HttpRequest.setQueryParam()
方法的一些代码示例,展示了HttpRequest.setQueryParam()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpRequest.setQueryParam()
方法的具体详情如下:
包路径:io.vertx.ext.web.client.HttpRequest
类名称:HttpRequest
方法名:setQueryParam
暂无
代码示例来源:origin: io.vertx/vertx-rx-java
/**
* Set a query parameter to the request.
* @param paramName the param name
* @param paramValue the param value
* @return a reference to this, so the API can be used fluently
*/
public io.vertx.rxjava.ext.web.client.HttpRequest<T> setQueryParam(String paramName, String paramValue) {
delegate.setQueryParam(paramName, paramValue);
return this;
}
代码示例来源:origin: vert-x3/vertx-rx
/**
* Set a query parameter to the request.
* @param paramName the param name
* @param paramValue the param value
* @return a reference to this, so the API can be used fluently
*/
public io.vertx.rxjava.ext.web.client.HttpRequest<T> setQueryParam(String paramName, String paramValue) {
delegate.setQueryParam(paramName, paramValue);
return this;
}
代码示例来源:origin: io.vertx/vertx-web-client
@Test
public void testOverwriteQueryParams() throws Exception {
testRequest(client -> client.get(DEFAULT_HTTP_PORT, DEFAULT_HTTP_HOST, "/?param=param_value1").setQueryParam("param", "param_value2"), req -> {
assertEquals("param=param_value2", req.query());
assertEquals("param_value2", req.getParam("param"));
});
}
内容来源于网络,如有侵权,请联系作者删除!