我一直在寻找一种使用Paperclip和jQuery fileupload设置Ruby on Rails 3.1的方法。查看jQuery fileupload页面上的教程,我已经设置了系统,但是我找不到一种方法来使回形针处理上传的文件。
这就是我所拥有的(简而言之):
# model
has_attached_file :photo ...
# view
= form_for @user, :html => {:multipart => true} do |f|
f.file_field :photo, :multiple => true
f.submit
# controller
def create
@user = User.new params[:user]
if @user.save
render :json => [...]
end
如果我检查提交的数据,我将获得params [:user]和params [:user] [:photo]中的所有用户属性,即ActionDispatch :: Http :: UploadedFile。调用@ user.save时,图像不会被处理或保存。
非常感谢线索,教程或解决方案!
答案 0 :(得分:8)
在解决此问题一段时间后,我发现:multipart => true
添加到f.file_field
时出现了问题,因为表单字段名称从user[photo]
更改为user[photo][]
。
使用单独的页面附加照片
我希望有一个单独的页面用于将多个文件上传到记录(另一个用于编辑用户的属性)。这对我来说是一个临时解决方案,但它确实有效。而不是f.form_field :photo, :multipart => true
我在视图中使用了form_field_tag 'user[photo]', :multiple => true
。
我的代码如下所示:
## app/model/user.rb
has_attached_file :photo
def to_fileupload_json
{
"name" => photo_file_name,
"size" => photo_file_size,
...
}
end
## app/views/photos/new.html.haml
= form_for @user, :url => users_path, :html => { :multipart => true } do |f|
#fileupload
= file_field_tag 'user[photo]', :multiple => true
= f.submit
= javascript_include_tag "jquery.fileupload.js"
# require all other JS files needed for the plugin (jQuery, jQuery UI, ...)
= stylesheet_link_tag "jquery.fileupload-ui.css"
= render :partial => "jquery_file_templates" # partial with jQuery templates for responses
:javascript
$(function () {
uploader = $('#fileupload').fileupload()
}
## app/controllers/users_controller.rb
def create
@user = User.create params[:user]
end
如果有其他人知道更好的方法(正确方法),请告诉我们!
使用fields_for
根据应用的结构,您可以考虑使用fields_for
。
在这种情况下,你必须:
accepts_nested_attributes_for :photos
添加到您的(用户)模型photos_attribues=(attributes)
并在那里处理记录创建3.times { @user.photos.build }
构建记录示例:
def photos_attribues=(attributes)
attributes.each do |key, value|
photo = Photo.create :photo => value, ...
end
end
免责声明:上述代码已经过简化/重写,以便于理解。我可能在删除不需要的东西时犯了错误。而且 - 我不确定这是解决这个问题的正确方法。建议和改进非常受欢迎!
答案 1 :(得分:1)
如果您在file_field
上明确设置名称:
f.file_field :photo, multiple: true, name: 'user[photo]'
Rails会生成user[photo]
而不是user[photo][]
。