无法在导轨4上使用回形针附加照片?

时间:2014-05-05 19:20:04

标签: ruby-on-rails ruby ruby-on-rails-4 paperclip

这是我的控制器

class ArticlesController < ApplicationController
def new
    @article=Article.new

end
def index
    @articles = Article.all
end
def create
    @article = Article.new(article_params)
    if @article.save
        redirect_to @article
    else
        render 'new'
    end
end
def show
    @article = Article.find(params[:id])
end  
def edit
      @article = Article.find(params[:id])


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

if @article.update(article_params)
redirect_to @article
else
  render 'edit'
end
end
def destroy
@article = Article.find(params[:id])
@article.destroy

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

end

这是我的表格

<%= form_for @article, :html => { :multipart => true } do |f| %>
<% if @article.errors.any? %>
 <div id="error_explanation">
   <h2><%= pluralize(@article.errors.count, "error") %> prohibited this article from being saved:</h2>
<ul>
<% @article.errors.full_messages.each do |msg| %>
  <li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<p>
<%= f.label :title %><br>
<%= f.text_field :title %>
</p>

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

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

我无法上传照片,因为它没有显示任何错误,但没有任何内容(图像路径)保存在数据库中,也没有保存任何照片。我是rails的新手,只是想创建一个具有上传照片功能的表单。

class Article < ActiveRecord::Base
validates :title, presence: true, length: { minimum: 5 }
has_attached_file :photo
validates_attachment :photo, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png"] }
end

我已经尝试了几乎每个教程,并且还发现了一些Similar Problem,但似乎没有解决问题。请帮帮我。

1 个答案:

答案 0 :(得分:1)

您需要将photo添加到强大的参数中:

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

没有它,该值不会传递给要验证和保存的模型。

我假设您已经运行了迁移,将Paperclip的photo_file_namephoto_file_sizephoto_content_typephoto_updated_at字段添加到您的articles表中

注意:只需在强参数中包含附件文件名photo;只要此值达到模型,Paperclip就会处理其余的。

此外,您需要禁用Paperclip的欺骗验证。它使用OS file命令来确定文件的MIME类型,但Windows没有文件命令,所以它总是失败。您可以通过在初始化程序中放置类似的内容来禁用欺骗检查:

module Paperclip
  class MediaTypeSpoofDetector
    def spoofed?
      false
    end
  end
end