【问题标题】:no implicit conversion of nil into String Ruby on Rails没有将 nil 隐式转换为 String Ruby on Rails
【发布时间】:2020-03-17 20:06:03
【问题描述】:

有人可以帮忙吗?

我的博文分享没有在 Twitter 上显示图片。我对其他网站进行了基准测试,发现所有博客文章工作网站在图片 URL 之前都有一个域 URL。所以,我添加了它,博客文章开始工作了!!!。耶耶

然后,我遇到了另一个问题。当我点击查看博客页面时,它会显示一条错误消息(如下所示)

ActionView::Template::Error (no implicit conversion of nil into String):

21:   %meta{:content => "https://www.joynus.com"+@post.preview_image.try(:data).try(:url), :name => "twitter:image"}

我的后期控制器

 class PostsController < ApplicationController
  before_filter :authorize, only: [:edit, :update, :new, :create, :destroy]
  before_filter :find_post, only: [:show, :edit, :update, :destroy]

  def index
    @posts = Post.order("created_at DESC").page(params[:page]).per(9)

    respond_to do |format|
      format.html
      format.rss { render :layout =>false }
    end
  end

  def show

  end

  def new
    @post = Post.new
  end

  def create
    @post = Post.new(post_params)

    if @post.save
      redirect_to posts_url
    else
      render 'new'
    end
  end

  def edit

  end

  def update
    if @post.update_attributes(post_params)
      redirect_to post_url(@post), notice: "#{@post.title} Updated"
    else
      render 'edit'
    end
  end

  def destroy
    @post.destroy

    redirect_to posts_url, notice: "#{@post.title} Deleted"
  end

  private

  def post_params
    params.require(:post).permit(:title, :social_title, :contents, :author_id, :approved, :summary, :preview_image_id, :category)
  end

  def find_post
    @post = Post.friendly.find(params[:id])

    # If an old id or a numeric id was used to find the record, then
    # the request path will not match the post_path, and we should do
    # a 301 redirect that uses the current friendly id.
    if params[:action] == 'show' && request.path != post_path(@post)
      return redirect_to @post, :status => :moved_permanently
    end
  end
end

还有,我的 post.rb

 class Post < ActiveRecord::Base
  extend FriendlyId
  friendly_id :slug_candidates, use: [:slugged, :history]

  belongs_to :preview_image, class_name: 'Ckeditor::Picture'
  belongs_to :author, class_name: 'User'

## Validations
  validates :contents, presence: true
  validates :title, presence: true
  validates :social_title, presence: true
  validates :summary, presence: true, length: 1..300
  validates :author, presence: false
  validates :category, presence: true
  delegate :full_name, to: :author, prefix: true, allow_nil: false

## Instance Methods
  def slug_candidates
    [
      :slug_title,
      [:id, :slug_title]
    ]
  end

  def slug_title
    title&.downcase
  end

  def should_generate_new_friendly_id?
      title_changed?
  end

  def raw_post
    self.contents.html_safe
  end

  def preview_image_thumb(dimensions = '100x')
    preview_image.try(:data).try(:thumb, dimensions).try(:url)
  end

  def self.preview_image_dimensions
    '350x'
  end
end

有没有办法跳过这个错误信息?我做了一些研究,发现了开始/救援。但我不知道如何以及在哪里放置它。

非常感谢任何帮助或建议。

【问题讨论】:

  • 第二段告诉我们...什么?请简明扼要。 “How to Ask”及其链接页面和“MCVE”是有用的阅读。

标签: ruby-on-rails ruby haml meta-tags


【解决方案1】:

这是因为您使用 + 隐式连接主机的 URL,但至少在一篇帖子中,@post.preview_image.try(:data).try(:url) 返回为 nil

你可以通过使用这样的字符串插值来修复它:

%meta{:content => "https://www.joynus.com#{@post.preview_image.try(:data).try(:url)}", :name => "twitter:image"}

或者通过像这样使用to_s 显式转换为字符串:

%meta{:content => "https://www.joynus.com"+@post.preview_image.try(:data).try(:url).to_s, :name => "twitter:image"}

【讨论】:

  • 或者在最近的红宝石中:@post.preview_image&amp;.data&amp;.url
  • @Unixmonkey 你是最棒的!
猜你喜欢
  • 1970-01-01
  • 2016-11-25
  • 2019-03-11
  • 1970-01-01
  • 2016-02-14
  • 1970-01-01
  • 2015-05-01
  • 1970-01-01
  • 2019-02-26
相关资源
最近更新 更多