Bu, taşıyıcı dalgayı kullanarak raylarda 4 sıfırdan birden fazla görüntü yüklemek için bir çözümdür
Veya çalışma demosunu bulabilirsiniz:
Multiple Attachment Rails 4
Yapmak için sadece şu adımları izleyin.
rails new multiple_image_upload_carrierwave
Gem dosyasında
gem 'carrierwave'
bundle install
rails generate uploader Avatar
İskele sonrası oluşturun
rails generate scaffold post title:string
Post_attachment iskele oluştur
rails generate scaffold post_attachment post_id:integer avatar:string
rake db:migrate
Post.rb içinde
class Post < ActiveRecord::Base
has_many :post_attachments
accepts_nested_attributes_for :post_attachments
end
Post_attachment.rb içinde
class PostAttachment < ActiveRecord::Base
mount_uploader :avatar, AvatarUploader
belongs_to :post
end
Post_controller.rb içinde
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'de
<%= 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 %>
Herhangi bir gönderi için bir eki ve ek listesini düzenlemek için.
Views / posts / show.html.erb'de
<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 %>
Ek görünümlerini / post_attachments / _form.html.erb düzenlemek için formu güncelleyin
<%= 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'deki güncelleme yöntemini değiştirin
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
Raylar 3'te güçlü parametreler tanımlamanıza gerek yoktur ve hem modelde hem de kabul _nested_ özniteliğinde özellik_accessible tanımlayabildiğiniz için, erişim özelliği raylarda 4 kullanımdan kaldırılmıştır.
Bir eki düzenlemek için bir seferde tüm ekleri değiştiremeyiz. bu yüzden eki birer birer değiştireceğiz veya kuralınıza göre değiştirebilirsiniz, Burada size herhangi bir eki nasıl güncelleyeceğinizi göstereceğim.