MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Nie można pobrać wartości właściwości dirtyPropertyNames dla pól asocjacyjnych w Grails

Obecnie GORM dla MongoDB nie podaje poprawnych wartości w dirtyPropertyNames pole. Musisz więc użyć innego pola wstrzykiwanego niższego poziomu w instancji domeny, tj. $changedProperties .

Ale jest też problem z $changedProperties że nawet jeśli powiążesz pole z tą samą wartością, $changedProperties będzie miał dla niego wpis. Możesz więc dostosować go trochę bardziej w ten sposób, aby Twój kod działał:

def beforeUpdate() {
    def instance = this
    Map updatedFields = instance.$changedProperties

    updatedFields.each { name, value ->
        if (updatedFields[name] != instance[name]) {
            println "Field value $name is updated"
            if (name == "addresses") {
                // I've not run this for a long time, just confirm the old and new addresses values and swap the assignment of below lines
                List newAddresses = updatedFields[name]
                List oldAddresses = instance[name]

                newAddresses.each { address ->
                    if (!address.id) {
                        println "Got new address: $address.status"
                    } else {
                        Address oldAddress = oldAddresses.find { it.id == address.id }
                        if (!oldAddress) { // This is just an edge condition
                            println "Got new address: $address.status"
                        } else if (oldAddress.status != address.staus) {
                            println "$address status is updated to $address.status"
                        }
                    }
                }
            }
        }
    }
}



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Mongoose limit/przesunięcie i zapytanie zliczania

  2. MongoDb Jak pogrupować według miesiąca i roku z ciągu znaków

  3. Pobierz wartości jako tablicę elementów po $lookup

  4. Sortuj tablicę i dodaj pole rangi w MongoDB

  5. Jak usunąć wiele kolekcji mongodb naraz?