сгенерировать URL-адрес slug, используя rails 4

Основываясь на этом руководстве, я создал URL-адрес slug, но когда я нажимаю «Показать» или «Добавить публикацию», отображается ошибка:

ActiveRecord::RecordNotFound
Couldn't find Post with id=testing-seo-url

Вместо того, чтобы брать слаг, он берет как id. где я должен внести изменения, чтобы это сработало. Вот мой контроллер

class PostsController < ApplicationController
  before_action :set_post, only: [:show, :edit, :update, :destroy]

  # GET /posts
  # GET /posts.json
  def index
    @posts = Post.all
  end

  # GET /posts/1
  # GET /posts/1.json
  def show
  end

  # GET /posts/new
  def new
    @post = Post.new
  end

  # GET /posts/1/edit
  def edit
  end

  # POST /posts
  # POST /posts.json
  def create
    @post = Post.new(post_params)

    respond_to do |format|
      if @post.save
        format.html { redirect_to @post, notice: 'Post was successfully created.' }
        format.json { render action: 'show', status: :created, location: @post }
      else
        format.html { render action: 'new' }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # PATCH/PUT /posts/1
  # PATCH/PUT /posts/1.json
  def update
    respond_to do |format|
      if @post.update(post_params)
        format.html { redirect_to @post, notice: 'Post was successfully updated.' }
        format.json { head :no_content }
      else
        format.html { render action: 'edit' }
        format.json { render json: @post.errors, status: :unprocessable_entity }
      end
    end
  end

  # DELETE /posts/1
  # DELETE /posts/1.json
  def destroy
    @post.destroy
    respond_to do |format|
      format.html { redirect_to posts_url }
      format.json { head :no_content }
    end
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_post
      @post = Post.find(params[:id])
    end

    # Never trust parameters from the scary internet, only allow the white list through.
    def post_params
      params.require(:post).permit(:title, :content)
    end
end

А вот и моя модель:

class Post < ActiveRecord::Base

    extend FriendlyId
    friendly_id :title, use: :slugged
end

Это всего лишь эшафот. Я не создавал никакого другого контроллера.


person overflow    schedule 08.09.2013    source источник
comment
наверное, после установки гема можно было запустить Post.find_each(&:save) в rails console, естественно после rake db:migrate добавить слаг в Posts таблицу.   -  person ekremkaraca    schedule 08.09.2013
comment
да сделал оба, но та же ошибка. У меня есть столбец slug в моей таблице с url-separated-with-hifen-like-this   -  person overflow    schedule 08.09.2013


Ответы (1)


Это решило

def set_post
      @post = Post.friendly.find(params[:id])
end
person overflow    schedule 08.09.2013