Gets another DataSnapshot for the location at the specified relative path.
Passing a relative path to the child() method of a DataSnapshot returns
another DataSnapshot for the location at the specified relative path. The
relative path can either be a simple child name (for example, "ada") or a
deeper, slash-separated path (for example, "ada/name/first"). If the child
location has no data, an empty DataSnapshot (that is, a DataSnapshot
whose value is null) is returned.
A relative path to the location of child data.
DataSnapshot for the location at the specified relative path.
Returns true if this DataSnapshot contains any data. It is slightly more
efficient than using snapshot.val() !== null.
Whether this DataSnapshot contains any data.
Exports the entire contents of the DataSnapshot as a JavaScript object.
The exportVal() method is similar to val(), except priority information
is included (if available), making it suitable for backing up your data.
The DataSnapshot's contents as a JavaScript value (Object,
Array, string, number, boolean, or null).
Enumerates the top-level children in the DataSnapshot.
Because of the way JavaScript objects work, the ordering of data in the
JavaScript object returned by val() is not guaranteed to match the ordering
on the server nor the ordering of child_added events. That is where
forEach() comes in handy. It guarantees the children of a DataSnapshot
will be iterated in their query order.
If no explicit orderBy*() method is used, results are returned
ordered by key (unless priorities are used, in which case, results are
returned by priority).
A function
that will be called for each child DataSnapshot. The callback can return
true to cancel further enumeration.
True if enumeration was canceled due to your callback returning true.
Gets the priority value of the data in this DataSnapshot.
Applications need not use priority but can order collections by ordinary properties (see Sorting and filtering data).
The the priority value of the data in this DataSnapshot.
Returns true if the specified child path has (non-null) data.
A relative path to the location of a potential child.
true if data exists at the specified child path; else
false.
Returns whether or not the DataSnapshot has any non-null child
properties.
You can use hasChildren() to determine if a DataSnapshot has any
children. If it does, you can enumerate them using forEach(). If it
doesn't, then either this snapshot contains a primitive value (which can be
retrieved with val()) or it is empty (in which case, val() will return
null).
True if this snapshot has any children; else false.
Returns the number of child properties of this DataSnapshot.
The number of child properties of this DataSnapshot.
A JSON-serializable representation of this object.
Extracts a JavaScript value from a DataSnapshot.
Depending on the data in a DataSnapshot, the val() method may return a
scalar type (string, number, or boolean), an array, or an object. It may also
return null, indicating that the DataSnapshot is empty (contains no data).
The DataSnapshot's contents as a JavaScript value (Object,
Array, string, number, boolean, or null).
Generated using TypeDoc
A
DataSnapshotcontains data from a Database location.Any time you read data from the Database, you receive the data as a
DataSnapshot. ADataSnapshotis passed to the event callbacks you attach withon()oronce(). You can extract the contents of the snapshot as a JavaScript object by calling theval()method. Alternatively, you can traverse into the snapshot by callingchild()to return child snapshots (which you could then callval()on).A
DataSnapshotis an efficiently generated, immutable copy of the data at a Database location. It cannot be modified and will never change (to modify data, you always call theset()method on aReferencedirectly).