我工作的一個REST API,試圖上傳的用戶用圖片:上傳文件和回形針
No handler found for #<Hashie::Mash filename="user.png" head="Content-Disposition: form-data; name=\"picture\"; filename=\"user.png\"\r\nContent-Type: image/png\r\n" name="picture" tempfile=#<File:/var/folders/7g/b_rgx2c909vf8dpk2v00r7r80000gn/T/RackMultipart20121228-52105-43ered> type="image/png">
我試圖測試回形針與控制器和它的工作,但是當我嘗試通過葡萄API上傳它不工作我的文章標題是多/ form-data的
我對上傳的代碼是這樣
user = User.find(20)
user.picture = params[:picture]
user.save!
因此,如果無法通過葡萄上傳文件,是否有其他方法通過REST API上傳文件?
這沒有工作:http://stackoverflow.com/qu estions/15354699/how-do-you-upload-a-file-with-paperclip-without-rails – Chloe