Rails 4とCarrierWaveを使用して、ファイル選択ウィンドウから複数の画像をアップロードするにはどうすればよいですか?私が持っているpost_controller
とpost_attachments
モデル。これどうやってするの?
誰かが例を提供できますか?これに対する簡単なアプローチはありますか?
回答:
これは、rails4でcarrierwaveを使用して複数の画像を最初からアップロードするソリューションです。
または、動作するデモを見つけることができます: 複数のアタッチメントレール4
これを行うには、次の手順に従います。
rails new multiple_image_upload_carrierwave
gemファイル内
gem 'carrierwave'
bundle install
rails generate uploader Avatar
ポストスキャフォールドを作成する
rails generate scaffold post title:string
post_attachmentスキャフォールドを作成します
rails generate scaffold post_attachment post_id:integer avatar:string
rake db:migrate
post.rbで
class Post < ActiveRecord::Base
has_many :post_attachments
accepts_nested_attributes_for :post_attachments
end
post_attachment.rb内
class PostAttachment < ActiveRecord::Base
mount_uploader :avatar, AvatarUploader
belongs_to :post
end
post_controller.rb内
def show
@post_attachments = @post.post_attachments.all
end
def new
@post = Post.new
@post_attachment = @post.post_attachments.build
end
def create
@post = Post.new(post_params)
respond_to do |format|
if @post.save
params[:post_attachments]['avatar'].each do |a|
@post_attachment = @post.post_attachments.create!(:avatar => a)
end
format.html { redirect_to @post, notice: 'Post was successfully created.' }
else
format.html { render action: 'new' }
end
end
end
private
def post_params
params.require(:post).permit(:title, post_attachments_attributes: [:id, :post_id, :avatar])
end
views / posts /_form.html.erb内
<%= form_for(@post, :html => { :multipart => true }) do |f| %>
<div class="field">
<%= f.label :title %><br>
<%= f.text_field :title %>
</div>
<%= f.fields_for :post_attachments do |p| %>
<div class="field">
<%= p.label :avatar %><br>
<%= p.file_field :avatar, :multiple => true, name: "post_attachments[avatar][]" %>
</div>
<% end %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
投稿の添付ファイルと添付ファイルのリストを編集します。 views / posts /show.html.erb内
<p id="notice"><%= notice %></p>
<p>
<strong>Title:</strong>
<%= @post.title %>
</p>
<% @post_attachments.each do |p| %>
<%= image_tag p.avatar_url %>
<%= link_to "Edit Attachment", edit_post_attachment_path(p) %>
<% end %>
<%= link_to 'Edit', edit_post_path(@post) %> |
<%= link_to 'Back', posts_path %>
フォームを更新して、添付ファイルviews / post_attachments /_form.html.erbを編集します
<%= image_tag @post_attachment.avatar %>
<%= form_for(@post_attachment) do |f| %>
<div class="field">
<%= f.label :avatar %><br>
<%= f.file_field :avatar %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
post_attachment_controller.rbの更新メソッドを変更します
def update
respond_to do |format|
if @post_attachment.update(post_attachment_params)
format.html { redirect_to @post_attachment.post, notice: 'Post attachment was successfully updated.' }
end
end
end
レール3では、強力なパラメーターを定義する必要はありません。また、レール4ではアクセス可能な属性が非推奨であるため、モデルとaccept_nested_attributeの両方でattribute_accessibleを定義してモデルを投稿できます。
添付ファイルを編集するために、一度にすべての添付ファイルを変更することはできません。そのため、添付ファイルを1つずつ置き換えるか、ルールに従って変更できます。ここでは、添付ファイルを更新する方法を示します。
create
ですか?Railsとcarrierwaveは、コレクションを自動的に保存するのに十分スマートです。
:_destroy
部分)を見たい
CarrierWaveのドキュメントを見ると、これは実際には非常に簡単です。
https://github.com/carrierwaveuploader/carrierwave/blob/master/README.md#multiple-file-uploads
例として、写真を追加したいモデルとしてProductを使用します。
マスターブランチCarrierwaveを入手して、Gemfileに追加します。
gem 'carrierwave', github:'carrierwaveuploader/carrierwave'
目的のモデルに列を作成して、画像の配列をホストします。
rails generate migration AddPicturesToProducts pictures:json
移行を実行する
bundle exec rake db:migrate
モデル製品に写真を追加する
app/models/product.rb
class Product < ActiveRecord::Base
validates :name, presence: true
mount_uploaders :pictures, PictureUploader
end
ProductsControllerの強力なパラメータに画像を追加する
app/controllers/products_controller.rb
def product_params
params.require(:product).permit(:name, pictures: [])
end
フォームが複数の写真を受け入れることを許可する
app/views/products/new.html.erb
# notice 'html: { multipart: true }'
<%= form_for @product, html: { multipart: true } do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
# notice 'multiple: true'
<%= f.label :pictures %>
<%= f.file_field :pictures, multiple: true, accept: "image/jpeg, image/jpg, image/gif, image/png" %>
<%= f.submit "Submit" %>
<% end %>
ビューでは、pictures配列を解析する画像を参照できます。
@product.pictures[1].url
フォルダから複数の画像を選択した場合、順序は上から下に画像を取得する正確な順序になります。
UndefinedConversionError ("\x89" from ASCII-8BIT to UTF-8)
ソリューションの場合、 Rails 4.xxですが、ActionDispatch::Http::UploadedFile
ファイル名ではなくデータベースに保存するという課題に直面しています(Rails 5.xxを使用)。また、アップローダーの特定のパスのパブリックフォルダーにファイルを保存しません。
SSRの回答へのいくつかのマイナーな追加:
accepts_nested_attributes_forでは、親オブジェクトのコントローラーを変更する必要はありません。だから修正する場合
name: "post_attachments[avatar][]"
に
name: "post[post_attachments_attributes][][avatar]"
次に、これらのようなコントローラーの変更はすべて冗長になります。
params[:post_attachments]['avatar'].each do |a|
@post_attachment = @post.post_attachments.create!(:avatar => a)
end
またPostAttachment.new
、親オブジェクトフォームに次のものを追加する必要があります。
views / posts /_form.html.erb内
<%= f.fields_for :post_attachments, PostAttachment.new do |ff| %>
<div class="field">
<%= ff.label :avatar %><br>
<%= ff.file_field :avatar, :multiple => true, name: "post[post_attachments_attributes][][avatar]" %>
</div>
<% end %>
これにより、親のコントローラーでこの変更が冗長になります。
@post_attachment = @post.post_attachments.build
詳細については、Rails fields_forフォームが表示されない、ネストされたフォームを参照してください。
あなたがRailsの5を使用する場合は、変更Rails.application.config.active_record.belongs_to_required_by_default
から値をtrue
にfalse
起因するバグの内側に(で設定/初期化子/ new_framework_defaults.rb)accepts_nested_attributes_for(そうでない場合はaccepts_nested_attributes_for Railsの5歳になるではない、一般的な作業)。
編集1:
破壊について追加するには:
models /post.rb内
class Post < ApplicationRecord
...
accepts_nested_attributes_for :post_attachments, allow_destroy: true
end
views / posts /_form.html.erb内
<% f.object.post_attachments.each do |post_attachment| %>
<% if post_attachment.id %>
<%
post_attachments_delete_params =
{
post:
{
post_attachments_attributes: { id: post_attachment.id, _destroy: true }
}
}
%>
<%= link_to "Delete", post_path(f.object.id, post_attachments_delete_params), method: :patch, data: { confirm: 'Are you sure?' } %>
<br><br>
<% end %>
<% end %>
このようにして、子オブジェクトのコントローラーをまったく必要としません。I平均ノーいかなるPostAttachmentsController
もはや必要とされています。親オブジェクトのコントローラー(PostController
)についても、ほとんど変更しません。変更するのは、次のようなホワイトリストに登録されたパラメーター(子オブジェクト関連のパラメーターを含む)のリストだけです。
def post_params
params.require(:post).permit(:title, :text,
post_attachments_attributes: ["avatar", "@original_filename", "@content_type", "@headers", "_destroy", "id"])
end
だからこそ、それaccepts_nested_attributes_for
はとても素晴らしいです。
<%= d.text_field :copyright, name: "album[diapos_attributes][][copyright]", class: 'form-field' %>
著作権は最後のレコードにのみ書き込み、すべてのレコードには書き込みません。
また、複数ファイルのアップロードを更新する方法を理解し、それを少しリファクタリングしました。このコードは私のものですが、ドリフトが発生します。
def create
@motherboard = Motherboard.new(motherboard_params)
if @motherboard.save
save_attachments if params[:motherboard_attachments]
redirect_to @motherboard, notice: 'Motherboard was successfully created.'
else
render :new
end
end
def update
update_attachments if params[:motherboard_attachments]
if @motherboard.update(motherboard_params)
redirect_to @motherboard, notice: 'Motherboard was successfully updated.'
else
render :edit
end
end
private
def save_attachments
params[:motherboard_attachments]['photo'].each do |photo|
@motherboard_attachment = @motherboard.motherboard_attachments.create!(:photo => photo)
end
end
def update_attachments
@motherboard.motherboard_attachments.each(&:destroy) if @motherboard.motherboard_attachments.present?
params[:motherboard_attachments]['photo'].each do |photo|
@motherboard_attachment = @motherboard.motherboard_attachments.create!(:photo => photo)
end
end
モデルへの2番目のリファクタリングは次のとおりです。
コントローラ:
def create
@motherboard = Motherboard.new(motherboard_params)
if @motherboard.save
@motherboard.save_attachments(params) if params[:motherboard_attachments]
redirect_to @motherboard, notice: 'Motherboard was successfully created.'
else
render :new
end
end
def update
@motherboard.update_attachments(params) if params[:motherboard_attachments]
if @motherboard.update(motherboard_params)
redirect_to @motherboard, notice: 'Motherboard was successfully updated.'
else
render :edit
end
end
マザーボードモデルの場合:
def save_attachments(params)
params[:motherboard_attachments]['photo'].each do |photo|
self.motherboard_attachments.create!(:photo => photo)
end
end
def update_attachments(params)
self.motherboard_attachments.each(&:destroy) if self.motherboard_attachments.present?
params[:motherboard_attachments]['photo'].each do |photo|
self.motherboard_attachments.create!(:photo => photo)
end
end