HttpUrlEncodingCodec
class
A class that uses encodeURIComponent
and decodeURIComponent
to serialize and parse URL parameter keys and values. If you pass URL query parameters without encoding, the query parameters can get misinterpreted at the receiving end. Use the HttpParameterCodec
class to encode and decode the query-string values.
class HttpUrlEncodingCodec implements HttpParameterCodec { encodeKey(key: string): string encodeValue(value: string): string decodeKey(key: string): string decodeValue(value: string) }
Methods
encodeKey() | |||
---|---|---|---|
|
key | string |
Returns
string
encodeValue() | |||
---|---|---|---|
|
value | string |
Returns
string
decodeKey() | |||
---|---|---|---|
|
key | string |
Returns
string
decodeValue() | |||
---|---|---|---|
|
value | string |
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v7.angular.io/api/common/http/HttpUrlEncodingCodec