gpt4 book ai didi

ruby-on-rails - 如何将 id 添加到 Friendly_id slug?

转载 作者:行者123 更新时间:2023-12-04 16:32:23 25 4
gpt4 key购买 nike

我有兴趣生成带有标题和 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 的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com