【发布时间】:2017-04-10 07:05:18
【问题描述】:
当我进入应用程序的显示页面时,我收到错误消息“nil 不是有效的资产来源”。我不确定是图像没有保存还是我尝试显示它的方式是错误的。
上传者文件夹:
class AvatarUploader < CarrierWave::Uploader::Base
storage :file
def store_dir
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end
个人资料模型:
class Profile < ApplicationRecord
has_many :albums
mount_uploader :image, AvatarUploader
end
架构:
create_table "profiles", force: :cascade do |t|
t.string "name"
t.date "born"
t.string "bio"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "image"
end
上传图片的视图字段:
class ProfilesController < ApplicationController
before_action :set_profile, only: [:show, :edit, :update, :destroy]
def index
@search = Profile.search(params[:q])
@profiles = @search.result(distinct: true)
end
def show
end
def new
@profile = Profile.new
end
def edit
end
def create
@profile = Profile.new(profile_params)
respond_to do |format|
if @profile.save format.html { redirect_to @profile, notice: 'Profile was successfully created.' }
format.json { render :show, status: :created, location: @profile }
else
format.html { render :new }
format.json { render json: @profile.errors, status: :unprocessable_entity }
end
end
end
def update
respond_to do |format|
if @profile.update(profile_params)
format.html { redirect_to @profile, notice: 'Profile was successfully updated.' }
format.json { render :show, status: :ok, location: @profile }
else
format.html { render :edit }
format.json { render json: @profile.errors, status: :unprocessable_entity }
end
end
end
def destroy
@profile.destroy
respond_to do |format|
format.html { redirect_to profile_url, notice: 'Profile was successfully destroyed.' }
format.json { head :no_content }
end
end
private
def set_profile
@profile = Profile.find(params[:id])
end
def profile_params
params.require(:profile).permit(:name, :bio, :born)
end
end
我填写并添加图片和信息的表单视图:
<%= form_for @profile, :html => {:multipart => true} do |f| %>
<% if @profile.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@profile.errors.count, "error") %> prohibited this profile from being saved:</h2>
<ul>
<% @profile.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.file_field :image %><br>
</div>
<div class="field">
<%= f.label :name %><br>
<%= f.text_field :name %>
</div>
<br>
<div class="field">
<%= f.label :bio %><br>
<%= f.text_area :bio %>
</div>
<br>
<div class="field">
<%= f.label :born %><br>
<%= f.date_select :born %>
</div>
<br>
<div class="actions">
<%= f.submit %>
以及出现错误的显示视图:
<p>
<%= image_tag @profile.image_url %>
</p>
<p>
<strong>Name:</strong>
<%= @profile.name %>
</p>
<p>
<strong>Bio:</strong>
<%= @profile.bio %>
</p>
<p>
<strong>Born:</strong>
<%= @profile.born %>
</p>
<%= link_to 'Edit', edit_profile_path(@profile) %> |
<%= link_to 'Back', profiles_path %>
我提交图像并收到错误消息,上面显示视图中的行突出显示。
“显示 /home/ubuntu/workspace/music-db/app/views/profiles/show.html.erb 提出第 5 行的位置:
nil 不是有效的资产来源"
来自阅读其他类似问题。我们可能是图像没有正确保存。好像有图像保存它不会是零。但实际上我只是不确定。我只是第一次尝试这个宝石。
非常感谢任何和所有帮助。
【问题讨论】:
-
是的,您的图像未存储..您可以粘贴整个视图表单和控制器方法吗?
-
我已经添加了完整的视图表单和显示以及控制器。希望这足以说明问题。添加“除非@profile.image.blank?”正如下面 Askanksha 所建议的那样,确实会显示默认图片,但它并不能帮助我实际存储和显示我想要显示的图像。
-
你安装 gem 'mini_magick' 了吗??
标签: ruby-on-rails ruby file-upload carrierwave