如何在rails中使用Friendly_idgem用随机数替换UUID?
How to replace the UUID with random numbers using Friendly_id gem in rails?
使用 Rails 4 和 FriendlyId Gem 版本 5.Im 新的 Friendly id gem。在这里我想替换我的 Url 像 profile-name-{4 (or) 5 length random numbers} 而不是 profile-name-Long-UUID 。谢谢
Class Profile < ActiveRecord::Base
extend FriendlyId
friendly_id :slug_candidates, use: :slugged
def slug_candidates
[self.name, "%s %s" % [self.name, SecureRandom.hex(3)]]
end
end
更多参考请点击here
使用 Rails 4 和 FriendlyId Gem 版本 5.Im 新的 Friendly id gem。在这里我想替换我的 Url 像 profile-name-{4 (or) 5 length random numbers} 而不是 profile-name-Long-UUID 。谢谢
Class Profile < ActiveRecord::Base
extend FriendlyId
friendly_id :slug_candidates, use: :slugged
def slug_candidates
[self.name, "%s %s" % [self.name, SecureRandom.hex(3)]]
end
end
更多参考请点击here