验证assosiations rails mongomapper

时间:2014-09-04 07:38:33

标签: ruby-on-rails validation mongomapper

如何验证协议

我有广告商belongs_to city 我需要检查城市的唯一性名称

我模特的大块

  key :name, String , :required => true ,:unique => true ,:scope => :city_id
  key :city_id, ObjectId   , :required => true


  belongs_to :city

我试过

  key :name, String , :required => true ,:unique => true ,:scope => :city_id

我错了

1 个答案:

答案 0 :(得分:1)

而不是你拥有的,你可以放:

key :name, String, :required => true

另外一行:

validates :name,  :uniqueness => {:scope => :city_id}