填写这份《一分钟调查》,帮我们(开发组)做得更好!去填写Home

HttpParameterCodec

一个用来在 URL 中编码和解码参数的编解码器。

A codec for encoding and decoding parameters in URLs.

查看"说明"...

      
      interface HttpParameterCodec {
  encodeKey(key: string): string
  encodeValue(value: string): string
  decodeKey(key: string): string
  decodeValue(value: string): string
}
    

说明

HttpParams 使用。

Used by HttpParams.

方法

      
      encodeKey(key: string): string
    
参数
key string
返回值

string

      
      encodeValue(value: string): string
    
参数
value string
返回值

string

      
      decodeKey(key: string): string
    
参数
key string
返回值

string

      
      decodeValue(value: string): string
    
参数
value string
返回值

string