作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有兴趣生成带有标题和 ID 的 slug。否则,我会收到错误,例如帖子收集路线覆盖单个帖子路线。
class Post > ApplicationRecord
extend FriendlyId
friendly_id [:id, :title], use: :slugged
end
resources :posts do
get "videos", on: :collection
end
Slug“视频”会与“视频”收集路线冲突。
"#{id}_#{title}" # Friendly Id slug
最佳答案
友好 ID 不能这样做,因为它在保存之前会生成 slug 所以它不会有 id
https://github.com/norman/friendly_id/blob/master/lib/friendly_id/slugged.rb#L250
您可能需要使用 to_param
自定义方法:
class Post < ApplicationRecord
def to_param
"#{id}_#{title}".parameterize
end
end
但是随后您需要编写自定义方法来查找记录 ID,例如在您的 Controller 中:
def show
id = params[:id].split('_')[0]
post = Post.find(id)
end
关于ruby-on-rails - 如何将 id 添加到 Friendly_id slug?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65817243/
我是一名优秀的程序员,十分优秀!