You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I bet you should use ring.middleware.params/wrap-params to get form-data in :form-params map of request. Then, your form data will appear in this sub-map with keys corresponding to names of inputs you had specified in your HTML (I assume but omit such HTML):
I have the following client-side request:
And on the server (with liberator):
At the server, I do get the print of the form-data like so:
But the next prn doesn't print anything where my goal is to extract the :uploaded-file. What am I doing wrong?
The text was updated successfully, but these errors were encountered: