我正在使用 Slugalicious gem。如何为数据库中的现有数据创建 slug?

I'm using the Slugalicious gem. How do I create slugs for existing data in my database?

我在我的 rails 应用程序中使用 slugalicous gem。我对其进行了设置,以便我的应用程序在我创建新博客文章时创建新的 slug,但它不会为我数据库中的所有现有博客文章创建 slug。如何为现有博客文章创建 slug。

对每条记录调用 .save 应该会触发 slug 创建。假设您的模型名为 Post:

Post.find_each {|post| post.save}