- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我在尝试允许使用 Shrine 上传头像时遇到了一些问题。我正在使用 Rails 5。我不断收到错误消息,“nil:NilClass 的未定义方法‘cached_image_data’”。
我试过多次重启,并按照各种教程进行操作。据我所知,我正在做我想做的一切。 ImageUploader 已设置,我的照片模型已设置等。我在下面包含了相关的代码。
应用程序/模型/photo.rb:
class Photo < ApplicationRecord
include ImageUploader::Attachment.new(:image)
end
apps/uploaders/image_uploader.rb需要“image_processing/mini_magick”
class ImageUploader < Shrine
plugin :processing
plugin :versions, names: [:original, :thumb, :medium]
plugin :delete_raw # delete processed files after uploading
process(:store) do |io, context|
original = io.download
pipeline = ImageProcessing::MiniMagick.source(original)
size_80 = pipeline.resize_to_limit!(80, 80)
size_300 = pipeline.resize_to_limit!(300, 300)
original.close!
# return hash of 3 sizes of the same image
{ original: io, thumb: size_80, medium: size_300 }
end
结束
app/views/profiles/_form.html.erb
<%= form_with(model: profile, local: true) do |form| %>
<div class="field">
<%= form.label :image %>
<%= form.hidden_field :image, value: @photo.cached_image_data %>
<%= form.file_field :image, id: :photo_image_data %>
</div>
<% end %>
app/controllers/profile_controller.rb
class ProfilesController < ApplicationController
before_action :set_profile, only: [:show, :edit, :update, :destroy]
before_action :view_own_profile, only: [:show]
def show
end
private
def set_profile
@profile = Profile.find(params[:id])
end
def profile_params
params.require(:profile).permit(:first_name, :last_name, :mobile,
:street_address, :suburb, :postcode, :country, :mobile, :image,
:latitude, :longitude, :user_id)
end
结束
如有任何帮助,我们将不胜感激。如果需要任何其他信息,请告诉我。
干杯,创
最佳答案
您应该在 Controller 中设置@photo
变量。如果因为它不存在而无法设置,您可能需要在表单中调用 @photo&.cached_image_data
(注意 &
)。这和调用 @photo.nil 一样吗? ? nil :@photo.cached_image_data
在调用 #cached_image_data 之前检查 @photo
是否不是 nil
。如果 @photo
为 nil
,则使用 nil
的值,并且永远不会调用 #cached_image_data。
请参阅 2.3.0 release notes 的“安全导航运算符”部分.
关于ruby-on-rails - Rails 5 - Shrine 问题 : "undefined method ` cached_image_data' for nil:NilClass",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50189037/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!