Multiple files uploading on Ruby on Rails 3 [close

2019-04-26 16:42发布

I would like to upload multiple pictures to my Rails 3 application. I am currently using Paperclip to upload a picture, and I have some post processing operations assigned to the model Photo.

I saw some samples on the net (integrating uploadify, swfupload or some other libraries), but none was very detailed, and each one misses some steps.

What is the simplest way to do this?

2条回答
甜甜的少女心
2楼-- · 2019-04-26 17:23

A good JQuery uploader is jQuery-File-Upload . It has some paperclip samples and you can find a demo here

查看更多
我想做一个坏孩纸
3楼-- · 2019-04-26 17:39
@params = {
    "FacialImage" => UploadIO.new(File.new('C:\temp\ATDD\Test\test\sachin.jpg'), "image/jpeg"),
    "Login" => UploadIO.new(File.new('C:\temp\ATDD\Test\test\login.txt'), "application/json")
}
查看更多
登录 后发表回答