Full Update with the Overwrite Check

This method overwrites the data on the server with the key-value pairs sent from the client (the data on the server will be lost).

This method checks for overwrites using a technique known as optimistic locking. If the data on the server has been updated by other clients after you got the KiiObject, your update is rejected with an error.

Here is the sample code:

  • // Instantiate a KiiObject.
    var object2 = KiiObject.objectWithURI(object.objectURI());
    
    // Refresh the KiiObject to get the latest key-value pairs.
    object2.refresh().then(
      function(theObject) {
    
        // Update key-value pairs.
        theObject.set("myid", 1);
        theObject.set("name", "John Doe Jr");
        theObject.set("email", "john_jr@example.com");
        theObject.remove("address");
    
        // Save and fully update the KiiObject.
        // This method removes all key-value pairs from the KiiObject on the server and
        // adds the key-value pairs generated locally to the KiiObject.
        return theObject.saveAllFields(null, false);
      }
    ).then(
      function(theObject) {
        // Do something.
      }
    ).catch(
      function(error) {
        var theObject = error.target;
        var errorString = error.message;
        // Handle the error.
      }
    );
  • // Instantiate a KiiObject.
    var object2 = KiiObject.objectWithURI(object.objectURI());
    
    // Refresh the KiiObject to get the latest key-value pairs.
    object2.refresh({
      success: function(theObject) {
    
        // Update key-value pairs.
        theObject.set("myid", 1);
        theObject.set("name", "John Doe Jr");
        theObject.set("email", "john_jr@example.com");
        theObject.remove("address");
    
        // Save and fully update the KiiObject.
        // This method removes all key-value pairs from the KiiObject on the server and
        // adds the key-value pairs generated locally to the KiiObject.
        theObject.saveAllFields({
          success: function(theObject) {
            // Do something.
          },
          failure: function(theObject, errorString) {
            // Handle the error.
          }
        }, false);
      },
      failure: function(theObject, errorString) {
        // Handle the error.
      }
    });

This is what is happening in the sample code:

  1. Prepare a KiiObject to update. In this sample code, we are creating a KiiObject with its URI (Replace the URI in the code with the real one when you are running the code).
  2. Use the refresh() method to get the latest key-value pairs in the server. This is required to get the latest _version value that indicates the update status of the KiiObject.
  3. Add key-value pairs with the set() method and remove a key-value pair with the remove() method. Only the key-value pairs set here will be in the KiiOject after the updating.
  4. Execute the saveAllFields() method to update the KiiObject. By setting the second argument to false, we are enabling the overwrite check; the method returns an error if the KiiObject on the server has been updated by another client.