Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有实现 Datamapperfirst_or_create方法的原生 Sequel 方式?
first_or_create
还是我必须结合选择和插入?
我认为find_or_create应该适合你。
与 find 类似,但在记录不存在时使用给定条件调用 create。与 find 不同的是,此方法中使用的块不传递给 find,而是仅在 find 不返回对象时传递给 create。