2013-03-19 51 views
0

這裏是域類GORM - MongoDB中不會對父類保存項目設置

class Settings { 
    static constraints = { 
     uid(nullable: false, unique: true) 
     data() 
    } 
    static hasMany = [items: Item] 
    Map data 
} 

class Item{ 

    static constraints = { 
     name() 
     email() 
     approved() 
    } 

    static mapping = { 
     email index: true, indexAttributes: [unique: true] 
    } 

    String name 
    String email 
    Boolean approved = false; 
} 

基本上有有許多項目的許多設置對象(見插圖下面): Data Structure

現在我找到並更新像這樣的項目:

... 
     def item = (Item)Item.findByEmail(email); 
     if (!item.approved) { 
      item.approved = true; 
      item.save(flush: true); 
     } 
... 

未保存我缺少什麼嗎?

回答

0

默認情況下,MongoDB不會使用空字段。一旦我添加了一個值,一切正常:

... 
    def item = (Item)Item.findByEmail(email); 
    if (!item.approved) { 
     item.approved = true; 
     item.name = "MyName"; 
     item.save(flush: true); 
    } 
... 
相關問題