6

私はサポートしようとuploadifyしていましたが、それは私にこのエラーを与えています。基本的に私はという名前の1つを持っています。単一アップロードの場合はcarrierwaveで正常に機能しますが、複数ファイルの場合は機能しません。carrierwavemultiple file uploadGET http://localhost:3000/users/uploadify.swf?preventswfcaching=1361694618739modeluser

私はこのチュートリアルに従いました。のusers/_form.rb

<p>
<%= f.label "Upload Images"%>
<%= f.file_field :image, :multiple => true %>
</p>

<script type= "text/javascript">
$(document).ready(function() {
 <% key = Rails.application.config.session_options[:key] %>
  var uploadify_script_data = {};
  var csrf_param = $('meta[name=csrf-param]').attr('content');
  var csrf_token = $('meta[name=csrf-token]').attr('content');
  uploadify_script_data[csrf_param] = encodeURI(encodeURIComponent(csrf_token));
  uploadify_script_data['<%= key %>'] = '<%= cookies[key] %>';

  $('#user_image').uploadify({
  uploader        : '<%= asset_path("uploadify.swf")%>',
  script          : '/images',
  cancelImg       : '<%= asset_path("uploadify-cancel.png")%>',
  auto            : true,
  multi           : true,
  removeCompleted     : true,
  scriptData      : uploadify_script_data,
  onComplete      : function(event, ID, fileObj, doc, data) {
  }
  });  
 });
</script>

私はモンゴイドを使用しているので、モデルは次のようになります

class User
 include Mongoid::Document
 field :name, type: String
 field :description, type: String
 field :image, type: String

   mount_uploader :image, ImageUploader 
 end

エラーが何であるかわかりません。私を助けてください。

4

1 に答える 1

1

Carrierwaveを使用した複数の画像のアップロードの完全なソリューションは次のとおりです。実行するには、次の手順に従います。

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, :post_id => @post.id)
       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

ビュー/投稿/_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 %>

投稿の添付ファイルと添付ファイルのリストを編集します。ビュー/投稿/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

Rails 3では、強力なパラメーターを定義する必要はありません。また、Rails 4ではaccessible属性が非推奨であるため、modelとaccept_nested_attributeの両方でattribute_accessibleを定義してモデルを投稿できます。

添付ファイルを編集するために、一度にすべての添付ファイルを変更することはできません。そのため、添付ファイルを1つずつ置き換えるか、ルールに従って変更できます。ここでは、添付ファイルを更新する方法を示します。

于 2015-02-07T18:15:11.100 に答える