【问题标题】:generate slug url using rails 4使用 rails 4 生成 slug url
【发布时间】:2013-09-11 23:43:05
【问题描述】:

基于this tutorial,我创建了一个slug url,但是当我点击显示或添加帖子时,它显示错误为:

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

不是使用 slug,而是使用 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

这只是一个脚手架。我没有创建任何其他控制器。

【问题讨论】:

  • 可能,在安装完gem之后,你可以在rails console中运行Post.find_each(&amp;:save),当然是在rake db:migrate之后添加slug到Posts表中。
  • 是的,但同样的错误。我的表中有 slug 列,url-separated-with-hifen-like-this

标签: ruby-on-rails ruby-on-rails-4 friendly-id


【解决方案1】:

解决了

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

【讨论】:

    猜你喜欢
    • 2014-12-09
    • 2014-10-22
    • 2016-09-26
    • 2015-12-19
    • 1970-01-01
    • 2017-06-24
    • 2017-06-27
    • 2016-08-17
    • 2012-06-26
    相关资源
    最近更新 更多