io.vertx.ext.web.client.HttpRequest.setQueryParam()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(85)

本文整理了Java中io.vertx.ext.web.client.HttpRequest.setQueryParam()方法的一些代码示例,展示了HttpRequest.setQueryParam()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。HttpRequest.setQueryParam()方法的具体详情如下:
包路径:io.vertx.ext.web.client.HttpRequest
类名称:HttpRequest
方法名:setQueryParam

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"));
 });
}

相关文章