ruby Rails未定义的方法“friendly_id”使用friendly_id gem

hrysbysz  于 2023-04-20  发布在  Ruby
关注(0)|答案(1)|浏览(104)

我在SO和YouTube视频上看过类似的帖子,但似乎不明白为什么我会在博客网站上看到这个错误:

undefined method `friendly_id' for BlogPost:Class

理想情况下,我的URL应该是:www.mysite.com/blog-title-here
blog_post.rb模型

class BlogPost < ApplicationRecord
  # This ensures a blog title and message are present in the form
  has_rich_text :content
  validates :title, presence: true
  validates :content, presence: true
  attribute :published_at, :datetime

  extend friendly_id :title, use: :slugged

  def next
    BlogPost.where('id > ?', id).first
  end

  def prev
    BlogPost.where('id < ?', id).last
  end

  def should_generate_new_friendly_id?
    title_changed? || slug.blank?
  end
end

blog_post_controller.rb

class BlogPostsController < ApplicationController
  before_action :authenticate_user!, except: [:index, :show]
  before_action :set_blog_post, only: [:show, :edit, :update, :destroy]

  def index
    @blog_posts = BlogPost.all
    @blog_posts = BlogPost.order(created_at: :desc)
  end

  def show
    @next_blog_post = @blog_post.next
    @prev_blog_post = @blog_post.prev
  end

  def new
    @blog_post = BlogPost.new
  end

  def create
    @blog_post = BlogPost.new(blog_post_params)
    if @blog_post.save
      # Redirect to the show page for the newly created blog post
      redirect_to @blog_post
    else
      # Else, render the new template again
      render :new, status: :unprocessable_entity
    end
  end

  def edit
  end

  def update
    if @blog_post.update(blog_post_params)
      redirect_to @blog_post
    else
      render :edit, status: :unprocessable_entity
    end
  end

  def destroy
    @blog_post.destroy
    redirect_to root_path
  end

  private

  def blog_post_params
    params.require(:blog_post).permit(:title, :content, :published_at)
  end

  def set_blog_post
    @blog_post = BlogPost.friendly.find(params[:id])
  rescue ActiveRecord::RecordNotFound
    redirect_to root_path
  end

  def authenticate_user!
    redirect_to new_user_session_path, alert: 'Please sign in to continue.' unless user_signed_in?
  end
end

这是我的schema文件的一部分:

create_table "blog_posts", force: :cascade do |t|
    t.string "title"
    t.datetime "created_at", null: false
    t.datetime "updated_at", null: false
    t.datetime "published_at"
    t.string "slug"
    t.index ["slug"], name: "index_blog_posts_on_slug"
  end

  create_table "friendly_id_slugs", force: :cascade do |t|
    t.string "slug", null: false
    t.integer "sluggable_id", null: false
    t.string "sluggable_type", limit: 50
    t.string "scope"
    t.datetime "created_at"
    t.index ["slug", "sluggable_type", "scope"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope", unique: true
    t.index ["slug", "sluggable_type"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type"
    t.index ["sluggable_type", "sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_type_and_sluggable_id"
  end

我不确定我是否得到了这个错误,因为我没有按照模式使用'name',而是使用'title'作为BlogPost title。
我已经重新启动了服务器。完成了rails db:migrate。尝试更新架构,但这不起作用。

z9ju0rcb

z9ju0rcb1#

文档说你应该在模型中使用friendly_id,像这样:

class User < ApplicationRecord
  extend FriendlyId
  friendly_id :attribute_name, use: :slugged
end

相关问题