diff options
author | Sam Scott <sam.scott89@gmail.com> | 2019-01-21 11:01:30 -0500 |
---|---|---|
committer | Sam Scott <sam.scott89@gmail.com> | 2019-01-21 11:01:30 -0500 |
commit | fcf9feeb0e562ac82ce7c2929cd0db7b0ef0d4a4 (patch) | |
tree | de467aaea090ed1416e135d99f79bb5ff1afef45 /src | |
parent | 2e5f3769a8614248ae42f408dee40bbeeed1f615 (diff) | |
parent | 51b9edc66b0320e4ad8680416f040070c2b3810c (diff) |
Merge branch 'master' of github.com:samscott89/serde_qs
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -70,6 +70,34 @@ //! assert_eq!(rec_params, params); //! //! # } +//! ``` +//! +//! ## Strict vs Non-Strict modes +//! +//! `serde_qs` supports two operating modes, which can be specified using +//! [`Config`](struct.Config.html), and is all about how `serde_qs` handles square brackets. +//! +//! Techncially, square brackets should be encoded in URLs as `%5B` and `%5D`. +//! However, they are often used in their raw format to specify querystrings +//! such as `a[b]=123`. +//! +//! In strict mode, `serde_qs` will only tolerate unencoded square brackets +//! to denote nested keys. So `a[b]=123` will decode as `{"a": {"b": 123}}`. +//! This means that encoded square brackets can actually be part of the key. +//! `a[b%5Bc%5D]=123` becomes `{"a": {"b[c]": 123}}`. +//! +//! However, since some implementations will automatically encode everything +//! in the URL, we also have a non-strict mode. This means that `serde_qs` +//! will assume that any encoded square brackets in the string were meant to +//! be taken as nested keys. From the example before, `a[b%5Bc%5D]=123` will +//! now become `{"a": {"b": {"c": 123 }}}`. +//! +//! Non-strict mode can be useful when, as said before, some middleware +//! automatically encodes the brackets. But care must be taken to avoid +//! using keys with square brackets in them, or unexpected things can +//! happen. +//! +//! #![allow( )] |