parent
60f6d9e733
commit
b17d1a9aa3
|
@ -22,11 +22,10 @@ export interface HttpParameterCodec {
|
|||
}
|
||||
|
||||
/**
|
||||
* A `HttpParameterCodec` that uses `encodeURIComponent` and `decodeURIComponent` to
|
||||
* serialize and parse URL parameter keys and values. If URL query parameters are
|
||||
* passed without encoding, they might be misinterpreted at the receiving end. Use the
|
||||
* `HttpParameterCodec` to encode the query-string values. The same class can be used to decode the
|
||||
* encoded query-string values.
|
||||
* 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.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue