ruby-on-rails - Rails3 载波未上传

标签 ruby-on-rails ruby-on-rails-3 carrierwave

我尝试了这个教程:http://railscasts.com/episodes/253-carrierwave-file-uploads?autoplay=true 。 我无法让它发挥作用。我的文件未上传,但我可以看到数据已发送到 Controller 。

class PublicationsController < ApplicationController
  respond_to :html, :js, :json, :xml
  def create
    @publication = Publication.create(params[:publication])
    ...
  end
end

更新:

<form novalidate="novalidate" method="post" id="new_publication" enctype="multipart/form-data" class="simple_form publication" action="/sl/publications" accept-charset="UTF-8"><div style="margin:0;padding:0;display:inline"><input type="hidden" value="✓" name="utf8"><input type="hidden" value="vny2UjREsnQLZkUjH3zNxC8Cz5tvG/sAcllyjzZ+PWo=" name="authenticity_token"></div>
          <div class="inputs">
            <div class="input string required"><label for="publication_full_name" class="string required"><abbr title="obvezno">*</abbr> Name</label><input type="text" size="50" required="required" name="publication[full_name]" maxlength="255" id="publication_full_name" class="string required"></div>
            <div class="input string email required"><label for="publication_email" class="email required"><abbr title="obvezno">*</abbr>Mail</label><input type="email" size="50" required="required" name="publication[email]" maxlength="255" id="publication_email" class="string email required"></div>
            <div class="input string required"><label for="publication_subject" class="string required"><abbr title="obvezno">*</abbr>Subject</label><input type="text" size="50" required="required" name="publication[subject]" maxlength="255" id="publication_subject" class="string required"></div>
            <div class="input text required"><label for="publication_text" class="text required"><abbr title="obvezno">*</abbr>Text</label><textarea rows="20" required="required" name="publication[text]" id="publication_text" cols="40" class="text required"></textarea><span class="hint">You can uncomment the line below if you need to overwrite.</span></div>
            <div class="input file required"><label for="publication_attachment" class="file required"><abbr title="obvezno">*</abbr> Attachment</label><input type="file" required="required" name="publication[attachment]" id="publication_attachment" class="file required"></div>
          </div>
          <div class="buttons">
            <input type="submit" value="Create Publication" name="commit" id="publication_submit" class="button">
          </div>
        </form>

我可以看到参数像这样传递到 Controller :

Started POST "/en/publications" for 127.0.0.1 at Thu May 26 16:17:25 +0200 2011
  Processing by PublicationsController#create as HTML
  Parameters: {"commit"=>"Create Publication", "authenticity_token"=>"vny2UjREsnQLZkUjH3zNxC8Cz5tvG/sAcllyjzZ+PWo=", "utf8"=>"\342\234\223", "publication"=>{"attachment"=>#<ActionDispatch::Http::UploadedFile:0x106d660a8 @headers="Content-Disposition: form-data; name=\"publication[attachment]\"; filename=\"photo.jpg\"\r\nContent-Type: image/jpeg\r\n", @content_type="image/jpeg", @original_filename="photo.jpg", @tempfile=#<File:/var/folders/yX/yXe3dRdgGO8II-+SWIzLRE+++TI/-Tmp-/RackMultipart20110526-35653-1sr4hnw-0>>, "text"=>"asd", "subject"=>"asd", "full_name"=>"asd", "email"=>"<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="cfaebcab8fa3a0a3e1aca0a2" rel="noreferrer noopener nofollow">[email protected]</a>"}, "locale"=>"en"}

型号:

class Publication < ActiveRecord::Base
  mount_uploader :attachment, PublicationUploader

  validates :subject, 
            :presence => true
  validates :text, 
            :presence => true
  validates :full_name, 
            :presence => true
  validates :email, 
            :presence => true,
            :email => { :if => 'email.present?' }
  # validates :attachment, 
  #           :integrity => true,
  #           :processing => true
end

uploader 类(默认):

class PublicationUploader < CarrierWave::Uploader::Base

  # Include RMagick or ImageScience support:
  # include CarrierWave::RMagick
  # include CarrierWave::ImageScience

  # Choose what kind of storage to use for this uploader:
  storage :file
  # storage :s3

  # 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
    "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

  # Provide a default URL as a default if there hasn't been a file uploaded:
  # def default_url
  #   "/images/fallback/" + [version_name, "default.png"].compact.join('_')
  # end

  # Process files as they are uploaded:
  # process :scale => [200, 300]
  #
  # def scale(width, height)
  #   # do something
  # end

  # Create different versions of your uploaded files:
  # version :thumb do
  #   process :scale => [50, 50]
  # 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 pdf doc txt)
  end

  # Override the filename of the uploaded files:
  # def filename
  #   "something.jpg" if original_filename
  # end

end

gem 文件

source 'http://rubygems.org'

gem 'rails', '3.0.7'
gem "hirb"
gem "haml"
gem "compass"
gem "asset_tags"
gem "js_erb"
gem "jammit"
gem 'cat_router', '>=0.2.0'
gem 'devise'
gem 'i18n_routing'
gem 'simple_form', '>=1.4'
gem 'carmen'
gem 'carrierwave', '>=0.5.4'

group :development, :test do
  gem 'sqlite3'
  gem 'capistrano'
  gem "win32-open3", :platforms => :mswin
  gem 'seed-fu'
end
group :staging, :production do
  gem 'mysql'
end

帮忙?

最佳答案

rails 控制台中的以下代码返回什么:

Publication.create!(:attachment => File.new("test.jpg"))

是否创建出版物并存储附件?当然,rails 文件夹中必须有“test.jpg”文件。

关于ruby-on-rails - Rails3 载波未上传,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6139909/

相关文章:

ruby-on-rails - 如何向包含生成的 JOIN 添加附加条件?

ruby-on-rails - 复合模型名称问题

ruby-on-rails - 载波 uploader 的未定义方法过程

ruby-on-rails - 您如何使用 CarrierWave 生成​​视网膜 (iPad) 友好(逐行或隔行)jpeg 图像?

ruby-on-rails - 为亚马逊 s3 添加载波初始化程序后无法启动 Rails 应用程序

mysql - ActiveRecord::StatementInvalid -- Mysql2::Error: 表 'database.table_that_I_want_to_create' 不存在

ruby-on-rails - Rails_admin 不显示所有包含的模型

ruby-on-rails - 如何在 Ruby on Rails 中获取特殊字符之间的内容?

ruby-on-rails - 使用工厂女孩和 capybara 将日期输入到表单中

mysql - 带分页的范围随机顺序