类 BodyInserters.DefaultFormInserter
java.lang.Object
cn.taketoday.web.reactive.function.BodyInserters.DefaultFormInserter
- 所有已实现的接口:
BodyInserter<cn.taketoday.util.MultiValueMap<String,,String>, ClientHttpRequest> BodyInserters.FormInserter<String>
- 封闭类:
- BodyInserters
private static class BodyInserters.DefaultFormInserter
extends Object
implements BodyInserters.FormInserter<String>
-
嵌套类概要
从接口继承的嵌套类/接口 cn.taketoday.web.reactive.function.BodyInserter
BodyInserter.Context -
字段概要
字段 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明reactor.core.publisher.Mono<Void>insert(ClientHttpRequest outputMessage, BodyInserter.Context context) Insert into the given output message.Adds the specified values to the form.Adds the specified key-value pair to the form.
-
字段详细资料
-
data
-
-
构造器详细资料
-
DefaultFormInserter
private DefaultFormInserter()
-
-
方法详细资料
-
with
从接口复制的说明:BodyInserters.FormInserterAdds the specified key-value pair to the form.- 指定者:
with在接口中BodyInserters.FormInserter<String>- 参数:
key- the key to be addedvalue- the value to be added- 返回:
- this inserter for adding more parts
-
with
public BodyInserters.FormInserter<String> with(cn.taketoday.util.MultiValueMap<String, String> values) 从接口复制的说明:BodyInserters.FormInserterAdds the specified values to the form.- 指定者:
with在接口中BodyInserters.FormInserter<String>- 参数:
values- the values to be added- 返回:
- this inserter for adding more parts
-
insert
public reactor.core.publisher.Mono<Void> insert(ClientHttpRequest outputMessage, BodyInserter.Context context) 从接口复制的说明:BodyInserterInsert into the given output message.- 指定者:
insert在接口中BodyInserter<cn.taketoday.util.MultiValueMap<String,String>, ClientHttpRequest> - 参数:
outputMessage- the response to insert intocontext- the context to use- 返回:
- a
Monothat indicates completion or error
-