I created an Unpoly extension to support JSON form submission according to a W3C standard called unpoly-json-form While implementing support for file input fields, I discovered that all of the event handling and serialization code for form submission are all synchronous. In order to support File object serialization, the form serialization must also be async, and not just the HTTP request.
I created an Unpoly extension to support JSON form submission according to a W3C standard called unpoly-json-form While implementing support for file input fields, I discovered that all of the event handling and serialization code for form submission are all synchronous. In order to support File object serialization, the form serialization must also be async, and not just the HTTP request.