UrlQuery增加remove方法

This commit is contained in:
Looly 2024-07-16 15:21:00 +08:00
parent 7262c7695f
commit dd659efb52
2 changed files with 18 additions and 4 deletions

View File

@ -2,10 +2,11 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.30(2024-07-15)
# 5.8.30(2024-07-16)
### 🐣新特性
* 【core 】 Converter转换规则变更空对象、空值转为Bean时创建默认对象而非nullissue#3649@Github
* 【core 】 UrlQuery增加remove方法
### 🐞Bug修复
* 【core 】 修复因RFC3986理解有误导致的UrlPath处理冒号转义问题issue#IAAE88@Gitee

View File

@ -142,6 +142,7 @@ public class UrlQuery {
/**
* 设置是否严格模式
*
* @param strict 是否严格模式
* @return this
* @since 5.8.20
@ -176,6 +177,18 @@ public class UrlQuery {
return this;
}
/**
* 移除键及对应所有的值
*
* @param key
* @return this
* @since 5.8.30
*/
public UrlQuery remove(CharSequence key) {
this.query.remove(key);
return this;
}
/**
* 解析URL中的查询字符串
*
@ -283,9 +296,9 @@ public class UrlQuery {
* <li>如果value为{@code null}只保留key如key1对应value为{@code null}生成类似于{@code key1&key2=v2}形式</li>
* </ul>
*
* @param keyCoder 键值对中键的编码器
* @param valueCoder 键值对中值的编码器
* @param charset encode编码null表示不做encode编码
* @param keyCoder 键值对中键的编码器
* @param valueCoder 键值对中值的编码器
* @param charset encode编码null表示不做encode编码
* @return URL查询字符串
* @since 5.7.16
*/