在开始之前,我想说我已经使用Google搜索并尝试了多种解决方案。我仍然遇到同样的问题。
使用回形针上传图像时,会显示损坏的图像。我右键单击并检查,发现我的页面正在提升并出错:获取http://localhost:3000/system/pins/images/000/000/008/medium/imgres.jpg 404(未找到)。
查看
<%= image_tag @pin.image.url %>
<p>
<strong>Description:</strong>
<%= @pin.description %>
</p>
<% if @pin.user == current_user %>
<%= link_to 'Edit', edit_pin_path(@pin) %>
<%= link_to 'Back', pins_path %>
<% end %>
模型
class Pin < ActiveRecord::Base
belongs_to :user
has_attached_file :image, :styles => { :medium => "300x300>", :thumb => "100x100>" }
validates_attachment_content_type :image, content_type: /\Aimage\/.*\z/
end
控制器
class PinsController < ApplicationController
before_action :set_pin, only: [:show, :edit, :update, :destroy]
before_action :correct_user, only: [:edit, :update, :destroy]
before_action :authenticate_user!, except: [:index, :show]
def index
@pins = Pin.all
end
def show
end
def new
@pin = current_user.pins.build
end
def edit
end
def create
@pin = current_user.pins.build(pin_params)
if @pin.save
redirect_to @pin, notice: 'Pin was successfully created.'
else
render :new
end
end
def update
if @pin.update(pin_params)
redirect_to @pin, notice: 'Pin was successfully updated.'
else
render :edit
end
end
def destroy
@pin.destroy
redirect_to pins_url
end
private
# Use callbacks to share common setup or constraints between actions.
def set_pin
@pin = Pin.find(params[:id])
end
def correct_user
@pin = current_user.pins.find_by(id: params[:id])
redirect_to pins_path, notice: "Not authorized to edit this pin" if @pin.nil?
end
# Never trust parameters from the scary internet, only allow the white list through.
def pin_params
params.require(:pin).permit(:description, :image)
end
end
的Gemfile
source 'https://rubygems.org'
ruby '2.2.6'
gem 'rails', '4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'coffee-script-source', '1.8.0'
gem 'bootstrap-sass'
gem 'devise'
gem 'paperclip', '~> 4.2.0'
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
gem 'rails_12factor'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
我尝试降级并升级我的宝石文件,添加可卡因宝石,添加:path =&gt; “”和:url =&gt; “”到我的模型,将时间戳设置为false,重新启动我的计算机和服务器,卸载并重新安装imagemagick,手动下载file.exe并按照说明将代码调整到development.rb,并更改图像的位置。我可能会忘记我尝试过的一些事情,因为我一直在谷歌搜索并调整几个小时。有人可以提供帮助吗?
答案 0 :(得分:1)
在高级别的回形针将上传的文件写入本地文件,并将有关该文件的信息存储在数据库中以供查找。 rails返回404的事实表明1)文件没有被写入或2)rails没有正确地提供文件。
关于存储的回形针文档非常适合作为参考:https://github.com/thoughtbot/paperclip#understanding-storage
默认情况下,rails应该提供公共目录中的文件,默认情况下paperclip存储public/system
下的文件,因此通常文件服务应该自动在开发环境中工作。
您可以验证文件public/system/pins/images/000/000/008/medium/imgres.jpg
是否存在?