当我到达我的应用中的显示页面时,我收到错误“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不是有效的资产来源“
从阅读其他类似问题。我们可能是图像没有正确保存。好像有图像保存它不会是零。但我真的不确定。我只是第一次尝试这个宝石。
非常感谢任何和所有帮助。
答案 0 :(得分:3)
将您的方法更改为accpet image param
def profile_params
params.require(:profile).permit(:name, :bio, :born)
end
到
def profile_params
params.require(:profile).permit(:name, :bio, :born, :image)
end
同时检查一下,您应该安装gem 'mini_magick'
答案 1 :(得分:0)
这意味着您的图片字段现在为空白。换句话说,它是零并且没有存储在其中的字段的名称。为防止出现错误,请先检查图像是否存在。
<p>
<%= image_tag @profile.image_url if @profile.image.present? %>
</p>
或
<p>
<%= image_tag @profile.image_url unless @profile.image.blank? %>
</p>
我没有检查过,但两者中的任何一个都适合你。
答案 2 :(得分:0)
虽然添加了所有额外的代码,但我注意到在我的私人资料中,我从未添加图像。因此,由于强大的参数,它不能让我保存图片。如果这是有道理的。
感谢你们两位的帮助。