mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
add method
This commit is contained in:
parent
68b402fd72
commit
ff962c12e9
@ -178,6 +178,18 @@ public class UrlQuery {
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 移除键及对应所有的值
|
||||
*
|
||||
* @param key 键
|
||||
* @return this
|
||||
* @since 5.8.30
|
||||
*/
|
||||
public UrlQuery remove(final CharSequence key) {
|
||||
this.query.remove(key);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 解析URL中的查询字符串
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user