接口 BodyInserters.FormInserter<T>
- 类型参数:
T- the value type
- 所有超级接口:
BodyInserter<cn.taketoday.util.MultiValueMap<String,T>, ClientHttpRequest>
- 所有已知子接口:
BodyInserters.MultipartInserter
- 封闭类:
- BodyInserters
public static interface BodyInserters.FormInserter<T>
extends BodyInserter<cn.taketoday.util.MultiValueMap<String,T>,ClientHttpRequest>
Extension of
BodyInserter that allows for adding form data or
multipart form data.-
嵌套类概要
从接口继承的嵌套类/接口 cn.taketoday.web.reactive.function.BodyInserter
BodyInserter.Context -
方法概要
修饰符和类型方法说明Adds the specified values to the form.Adds the specified key-value pair to the form.从接口继承的方法 cn.taketoday.web.reactive.function.BodyInserter
insert
-
方法详细资料
-
with
Adds the specified key-value pair to the form.- 参数:
key- the key to be addedvalue- the value to be added- 返回:
- this inserter for adding more parts
-
with
Adds the specified values to the form.- 参数:
values- the values to be added- 返回:
- this inserter for adding more parts
-