0

を使用して簡単なファイルアップロードを機能させようとしています

  • jquery-fileupload-rails
  • 搬送波

次のエラーの原因が見つかりません

Started POST "/pictures" for 127.0.0.1 at 2012-07-27 15:19:37 +0100
Processing by PicturesController#create as JSON
  Parameters: {"utf8"=>"✓",
  authenticity_token"=>"NKek0e/kfVRUk4SVBjokO5rL446dKvHo9+7mKuH0HKs=", "picture"=>   
  {"path"=>#  <ActionDispatch::Http::UploadedFile:0x00000002d48fa8 
  @original_filename="IMG_0001.JPG", @content_type="image/jpeg", @headers="Content-
  Disposition: form-data; name=\"picture[path]\"; filename=\"IMG_0001.JPG\"\r\nContent-
  Type: image/jpeg\r\n", @tempfile=#<File:/tmp/RackMultipart20120727-7807-1bcbfof>>}}
Completed 500 Internal Server Error in 1ms

ActiveModel::MassAssignmentSecurity::Error (Can't mass-assign protected attributes: 
path):
  app/controllers/pictures_controller.rb:9:in `new'
  app/controllers/pictures_controller.rb:9:in `create'

モデル、コントローラー、およびビューは、

https://github.com/blueimp/jQuery-File-Upload/wiki/Rails-setup-for-V6

エラーメッセージから、「パス」にアクセスできるようにする必要があると思いますが、どうすればよいでしょうか。jquery-file-uploadビットが機能していることに注意してください(ブートストラップボタンがあり、画像が画面に表示されるなど、ファイルのアップロード自体だけが明らかに機能しません!)

完全を期すために、これはpicture.rbです。

class Picture < ActiveRecord::Base

  include Rails.application.routes.url_helpers
  attr_accessible :avatar
  mount_uploader :avatar, AvatarUploader

  def to_jq_upload
    {
      "name" => read_attribute(:avatar),
      "size" => avatar.size,
      "url" => avatar.url,
      "thumbnail_url" => avatar.thumb.url,
      "delete_url" => picture_path(:id => id),
      "delete_type" => "DELETE" 
    }
  end
end

対応するコントローラーは

class PicturesController < ApplicationController  

  def index
    @pictures = Picture.all
    render :json => @pictures.collect { |p| p.to_jq_upload }.to_json
  end

  def create
    @picture = Picture.new(params[:picture])
    @picture.save!
    if @picture.save
      respond_to do |format|
        format.html {  
          render :json => [@picture.to_jq_upload].to_json, 
          :content_type => 'text/html',
          :layout => false
        }
        format.json {  
          render :json => [@picture.to_jq_upload].to_json     
        }
      end
    else 
      render :json => [{:error => "custom_failure"}], :status => 304
    end
  end

  def destroy
    @picture = Picture.find(params[:id])
    @picture.destroy
    render :json => true
  end

end

これはアップローダークラスです:

class AvatarUploader < CarrierWave::Uploader::Base

  storage :file

  def store_dir
    "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end


end
4

2 に答える 2

2

このエラーは、間違った方法でマウントされたアップローダーが原因で発生します。おそらく次のようなタイプミスがあります。

mount_uploader :avater, AvatarUploader

そのはず

mount_uploader :avatar, AvatarUploader

それを試してみてください

于 2012-07-27T14:55:26.987 に答える
1

私は自分で解決策を見つけました。エラーは、:pathの代わりに:avatarと読み替える必要があり、:avatarにアクセスできる必要があるというビューにありました。jQueryファイルアップロードのオプションも設定されている実装例は、https://github.com/apotry/jquery_fileupload_carrierwave_fogにあります。

于 2012-08-03T13:40:14.370 に答える