How can I post FileInfo to a web service using Yesod and Http-Conduit?
问题 I am working with the default Yesod scaffolding project. I have created a page that displays a simple form to upload files. (The form will likely be created on the client using Javascript.) For brevity, the form has a single file input: <form method="post" action=@{UploadR}> <input type="file" name="myfile"> <button type="submit"> My objective is to process the form data and then upload the file to a web service. I have no trouble processing the form, my concern is interacting with the web