在 Rails 中,如何为模型的新实例生成唯一的序列号?

发布于 2024-10-30 18:55:09 字数 186 浏览 3 评论 0原文

在 Rails 中,我正在寻找一种方法来生成自动递增序列号,以便为模型的新实例保存内部记录。我想避免创建特定于数据库的代码,而是拥有一个无论数据库如何都可以工作的解决方案。我当前的想法是等到模型保存后,然后获取已保存模型的 ID 并将其用作序列号的后缀,但随后我必须在创建时将每条记录保存两次。

有什么想法吗?

感谢您的关注!

In Rails, I'm looking for a way to generate an auto-incrementing serial number for internal record keeping for new instances of a model. I would like to avoid creating database specific code and rather have a solution that will work regardless of the database. My current idea is to wait until the model is saved and then grab the ID of the saved model and use that as a suffix of the serial number, but then I would have to save each record twice on creation.

Any ideas?

Thanks for looking!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酸甜透明夹心 2024-11-06 18:55:09

我建议改为在模型中构建串行模型。这将使您以后可以更灵活地调整序列号格式,并且它将在数据库中保留唯一的自动增量。使用常规自动递增整数主键,然后创建如下所示的序列号:

class Product
  def serial_number
    "PLN-%.6d" % id
  end
end

例如,如果您有 id = 567 的产品,您将拥有如下序列号:

Product.find(567).serial_number
=> PLN-000567

I would recommend constructing the serial model in the model instead. This will give you more flexibility to adjust the serial number format later, and it will keep the unique auto-increment in the database instead. Use a regular auto-increment integer primary key and then create the serial number like this:

class Product
  def serial_number
    "PLN-%.6d" % id
  end
end

So if you have a product with id = 567 for example, you'll have a serial number like this:

Product.find(567).serial_number
=> PLN-000567
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文