mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
UrlQuery增加remove方法
This commit is contained in:
parent
7262c7695f
commit
dd659efb52
@ -2,10 +2,11 @@
|
|||||||
# 🚀Changelog
|
# 🚀Changelog
|
||||||
|
|
||||||
-------------------------------------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------------------------------------
|
||||||
# 5.8.30(2024-07-15)
|
# 5.8.30(2024-07-16)
|
||||||
|
|
||||||
### 🐣新特性
|
### 🐣新特性
|
||||||
* 【core 】 Converter转换规则变更,空对象、空值转为Bean时,创建默认对象,而非null(issue#3649@Github)
|
* 【core 】 Converter转换规则变更,空对象、空值转为Bean时,创建默认对象,而非null(issue#3649@Github)
|
||||||
|
* 【core 】 UrlQuery增加remove方法
|
||||||
|
|
||||||
### 🐞Bug修复
|
### 🐞Bug修复
|
||||||
* 【core 】 修复因RFC3986理解有误导致的UrlPath处理冒号转义问题(issue#IAAE88@Gitee)
|
* 【core 】 修复因RFC3986理解有误导致的UrlPath处理冒号转义问题(issue#IAAE88@Gitee)
|
||||||
|
@ -142,6 +142,7 @@ public class UrlQuery {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 设置是否严格模式
|
* 设置是否严格模式
|
||||||
|
*
|
||||||
* @param strict 是否严格模式
|
* @param strict 是否严格模式
|
||||||
* @return this
|
* @return this
|
||||||
* @since 5.8.20
|
* @since 5.8.20
|
||||||
@ -176,6 +177,18 @@ public class UrlQuery {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移除键及对应所有的值
|
||||||
|
*
|
||||||
|
* @param key 键
|
||||||
|
* @return this
|
||||||
|
* @since 5.8.30
|
||||||
|
*/
|
||||||
|
public UrlQuery remove(CharSequence key) {
|
||||||
|
this.query.remove(key);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 解析URL中的查询字符串
|
* 解析URL中的查询字符串
|
||||||
*
|
*
|
||||||
@ -283,9 +296,9 @@ public class UrlQuery {
|
|||||||
* <li>如果value为{@code null},只保留key,如key1对应value为{@code null}生成类似于{@code key1&key2=v2}形式</li>
|
* <li>如果value为{@code null},只保留key,如key1对应value为{@code null}生成类似于{@code key1&key2=v2}形式</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* @param keyCoder 键值对中键的编码器
|
* @param keyCoder 键值对中键的编码器
|
||||||
* @param valueCoder 键值对中值的编码器
|
* @param valueCoder 键值对中值的编码器
|
||||||
* @param charset encode编码,null表示不做encode编码
|
* @param charset encode编码,null表示不做encode编码
|
||||||
* @return URL查询字符串
|
* @return URL查询字符串
|
||||||
* @since 5.7.16
|
* @since 5.7.16
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user