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.
在我的网络服务中使用地理编码器 gem,我们需要验证添加位置的唯一性的服务器端。使用地理编码器 gem 是否可能,我们不希望数据库中出现两次相同的位置。
任何帮助将不胜感激?
在模型上定义唯一性验证:
validates :latitude, uniqueness: {scope: :longitude}