我正在使用mongoid数据库,我试图覆盖url中的id属性来命名,但我收到错误
我的模特就像这样
class Product
include Mongoid::Document
field :name, type: String
field :price, type: BigDecimal
field :released_on, type: Date
field :_id, type: String, default: -> { name.to_s.parameterize }
validates_presence_of :name
embeds_many :reviews
end