回形针 gem 上传在 rails 4 多部分表单中不起作用

paperclip gem upload not working in rails 4 multipart form

我正在尝试设置一个能够上传图片、标题和 body 文本的基本表单。我正在使用 paperclip 4.2.1 gem 和 rails 4.2.0.

表单显示正常,我可以输入标题、一些 body 文本和 select 图片。但是,当我提交表单时,它会跳过 show 方法并返回到索引页面,并且图像不会上传到数据库。

当我提交只有标题和 body 文本的表单时,它会显示在 show 方法中。我确实验证了表单页面的源代码显示 "enctype="multipart/form-data”。有人知道我缺少什么吗??

schema.rb

ActiveRecord::Schema.define(version: 20150310181944) do

create_table "articles", force: :cascade do |t|
    t.string   "title"
    t.text     "text"
    t.datetime "created_at",         null: false
    t.datetime "updated_at",         null: false
    t.string   "image_file_name"
    t.string   "image_content_type"
    t.integer  "image_file_size"
    t.datetime "image_updated_at"
  end

结束

型号 --> article.rb

class Article < ActiveRecord::Base


  has_attached_file :image
  validates_attachment_content_type :image, content_type: /\Aimage\/.*\Z/

end

查看 --> new.html.erb

新文章

<%= form_for @article, html: { multipart: true } do |f| %>
  <p>
    <%= f.label :title %><br>
    <%= f.text_field :title %>
  </p>

  <p>
    <%= f.label :text %><br>
    <%= f.text_area :text %>
  </p>
    <p>
    <%= f.label :image %>
    <%= f.file_field :image %>  

    </p>
  <p>
    <%= f.submit %>
  </p>
<% end %>

<%= link_to 'Back', articles_path %>

查看 -> index.html.erb

<h1>Listing articles</h1>


<%= link_to 'New article', new_article_path %> 
<table>
  <tr>
    <th>Title</th>
    <th>Text</th>
    <th>Image</th>
  </tr>

 <% @articles.each do |article| %>
    <tr>
      <td><%= article.title %></td>
      <td><%= article.text %></td>
      <td><%= image_tag article.image.url %></td>
    </tr>
  <% end %>
</table>

查看 -> show.html.erb

<p>
  <strong>Title:</strong>
  <%= @article.title %>
</p>

<p>
  <strong>Text:</strong>
  <%= @article.text %>
</p>

<p>

    <%= image_tag @article.image.url %>
</p>


<%= link_to 'Back', articles_path %>

控制器 --> articles_controller.rb

class ArticlesController < ApplicationController

def index
  @articles = Article.all
end

def show
  @article = Article.find(params[:id])
end


def new
  @article = Article.new
end


def create
  @article = Article.create(article_params)

  @article.save
  redirect_to @article

end

private
  def article_params
    params.require(:article).permit(:title, :text, :image)
  end

end

我对 ruby 和一般编程还很陌生,所以它可能是某处的某种类型,但我已经搜索了好几天,我不确定为什么图片无法上传。

您在 create 方法中存在典型的验证错误。只需将 Article.create 更改为 Article.create! ,您就会看到错误和回溯。它将帮助您调查和解决问题。

require 'paperclip/media_type_spoof_detector'
module Paperclip
  class MediaTypeSpoofDetector
    def spoofed?
      false
    end
  end
end

我将上面的代码添加到/config/initializers/paperclip.rb中,现在我可以正常上传图片了,一切正常!!!

从我目前阅读的内容来看,图像附件似乎以某种方式丢失了它的扩展名并且未能通过欺骗检测器。它可能与 windows 7 中缺少的 file.exe unix 命令有关,但我尝试从

安装它

http://gnuwin32.sourceforge.net/packages/file.htm

仍然出现同样的错误,

在此处找到此解决方法:

https://github.com/thoughtbot/paperclip/issues/1429