簡體   English   中英

Carrierwave沒有上傳文件(Rails 4)

[英]Carrierwave not uploading file (Rails 4)

我在通過Carrierwave上傳文件時遇到問題。 我的模型設置為有很多瓶子,每個瓶子可以有多個樣本。 每個樣本都是通過Carrierwave上傳的圖像。 但是,文件根本不保存。 我希望它保存到的目錄中沒有文件出現, if @bottle.swatches.any?調用if @bottle.swatches.any? 在視圖中沒有顯示任何內容。

這是我第一次使用Rails 4,所以我覺得我的錯誤可能是由於nooby實踐(而不是實際的Carrierwave)。 我看起來遍布堆棧,但我嘗試過的都沒有工作。 我究竟做錯了什么? 非常感謝提前!

class Swatch < ActiveRecord::Base
  belongs_to :user
  belongs_to :bottle, dependent: :destroy
  mount_uploader :swatch, SwatchUploader

  validates :user_id, presence: true
  validates :bottle_id, presence: true
end

class Bottle < ActiveRecord::Base
  belongs_to :user

  has_many :swatches
  has_many :favorite_bottles
  has_many :favorited_by, through: :favorite_bottles, source: :user

  accepts_nested_attributes_for :swatches
  validates :name, 
    presence: true,
    length:              { in: 1..100 }

end

控制器

class BottlesController < ApplicationController

  def new
    @bottle = Bottle.new
    @bottle.swatches.build
  end

  def create
    @bottle = Bottle.new(bottle_params)

    if @bottle.save
      redirect_to @bottle
    else
      render 'new'
    end

  end

  #... edit, show, index... etc


  private
    def bottle_params
      params.require(:bottle).permit(:name, :brand, :color, :finish, :swatch, :swatches)
    end

swatch_uploader.rb

class SwatchUploader < CarrierWave::Uploader::Base

  storage :file

  # Override the directory where uploaded files will be stored.
  # This is a sensible default for uploaders that are meant to be mounted:
  def store_dir
    "#{Rails.root}/uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

  # Add a white list of extensions which are allowed to be uploaded.
  # For images you might use something like this:
  def extension_white_list
    %w(jpg jpeg gif png)
  end
end

HTML(HAML)

= form_for @bottle, html: { multipart: true } do |f|
  - if @bottle.errors.any?
    .alert.alert-danger
      - @bottle.errors.full_messages.each do |msg|
        = msg
  .col-md-6
    %p
      = f.fields_for :swatches do |swatch|
        = swatch.label :swatch
        = swatch.file_field :swatch
    %p
      = f.label :name
      = f.text_field :name
    %p
      = f.submit 'Submit'

在點擊提交后的控制台日志中:

Started POST "/bottles" for 127.0.0.1 at 2013-11-08 10:25:54 -0500
Processing by BottlesController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eOIHJNs6quv2OQQpp2tDn+9+d8rY8oiTjUI/gyp1bn4=", "bottle"=>{"swatches_attributes"=>{"0"=>{"swatch"=>#<ActionDispatch::Http::UploadedFile:0x007fb6aac322c0 @tempfile=#<Tempfile:/var/folders/pw/hw3vcmbs3s39dp2l89j0y23r0000gn/T/RackMultipart20131108-97524-dkcjzh>, @original_filename="Malice.jpg", @content_type="image/jpeg", @headers="Content-Disposition: form-data; name=\"bottle[swatches_attributes][0][swatch]\"; filename=\"Malice.jpg\"\r\nContent-Type: image/jpeg\r\n">}}, "name"=>"sdfsdf", "commit"=>"Submit"}

我認為問題在於你強大的障礙。 試試這個:

params.require(:bottle).permit({whatever bottle inputs you have},
 swatches_attributes: [{whatever swatch inputs you have, including the picture}])

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM