Adds smart json support for WTForms. Useful for when using WTForms with RESTful APIs.
In the documentation, the first example demonstrates initialising an `EventForm` instance with some example data (`json`). The next section, "Using patch_data" shows some data which it states is from the first example: ``` >>> form.data { 'name': 'First Event', 'is_public': False, 'location': { 'name': 'some location', 'address': None } } ``` but running the code from the first example produces: `{'name': 'First Event', 'is_public': False}` The `LocationForm` defined in the first example needs to be included in `EventForm` as a `FormField` to produce the data shown in the "Using patch_data" section.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by kdwyer and has received 1 comments.