Constructor
new ParseSession(attributes)
Parameters:
Name | Type | Description |
---|---|---|
attributes |
Object
|
The initial set of data to store in the user. |
Extends
Members
createdAt :Date
The first time this object was saved on the server.
Properties:
Name | Type | Description |
---|---|---|
createdAt |
- Overrides:
Type:
-
Date
updatedAt :Date
The last time this object was updated on the server.
Properties:
Name | Type | Description |
---|---|---|
updatedAt |
- Overrides:
Type:
-
Date
Methods
(static) current() → {Promise}
Retrieves the Session object for the currently logged in session.
Returns:
- Type:
-
Promise
A promise that is resolved with the Parse.Session object after it has been fetched. If there is no current user, the promise will be rejected.
(static) isCurrentSessionRevocable() → {Boolean}
Determines whether the current session token is revocable. This method is useful for migrating Express.js or Node.js web apps to use revocable sessions. If you are migrating an app that uses the Parse SDK in the browser only, please use Parse.User.enableRevocableSession() instead, so that sessions can be automatically upgraded.
Returns:
- Type:
-
Boolean
_clearPendingOps(keysToClearopt)
- Overrides:
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
keysToClear |
Array.<string>
|
<optional> |
if specified, only ops matching these fields will be cleared |
_getId()
Returns a local or server Id used uniquely identify this object
- Overrides:
_getStateIdentifier()
Returns a unique identifier used to pull data from the State Controller.
- Overrides:
add(attr, item) → {ParseObject|Boolean}
Atomically add an object to the end of the array associated with a given key.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
item |
The item to add. |
Returns:
- Type:
-
ParseObject
|Boolean
addAll(attr, items) → {ParseObject|Boolean}
Atomically add the objects to the end of the array associated with a given key.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
items |
Array.<Object>
|
The items to add. |
Returns:
- Type:
-
ParseObject
|Boolean
addAllUnique(attr, items) → {ParseObject|Boolean}
Atomically add the objects to the array associated with a given key, only if it is not already present in the array. The position of the insert is not guaranteed.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
items |
Array.<Object>
|
The objects to add. |
Returns:
- Type:
-
ParseObject
|Boolean
addUnique(attr, item) → {ParseObject|Boolean}
Atomically add an object to the array associated with a given key, only if it is not already present in the array. The position of the insert is not guaranteed.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
item |
The object to add. |
Returns:
- Type:
-
ParseObject
|Boolean
clear() → {ParseObject|boolean}
Clears all attributes on a model
- Overrides:
Returns:
- Type:
-
ParseObject
|boolean
clone() → {Parse.Object}
Creates a new model with identical attributes to this one.
- Overrides:
Returns:
- Type:
-
Parse.Object
destroy(options) → {Promise}
Destroy this model on the server if it was already persisted.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
options |
Object
|
Valid options are:
|
Returns:
- Type:
-
Promise
A promise that is fulfilled when the destroy completes.
dirty(attr) → {Boolean}
Returns true if this object has been modified since its last save/refresh. If an attribute is specified, it returns true only if that particular attribute has been modified since the last save/refresh.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
An attribute name (optional). |
Returns:
- Type:
-
Boolean
dirtyKeys() → {Array.<String>}
Returns an array of keys that have been modified since last save/refresh
- Overrides:
Returns:
- Type:
-
Array.<String>
equals(other) → {Boolean}
Determines whether this ParseObject is equal to another ParseObject
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
other |
Object
|
An other object ot compare |
Returns:
- Type:
-
Boolean
escape(attr)
Gets the HTML-escaped value of an attribute.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The string name of an attribute. |
existed() → {Boolean}
Returns true if this object was created by the Parse server when the object might have already been there (e.g. in the case of a Facebook login)
- Overrides:
Returns:
- Type:
-
Boolean
(async) exists(options) → {Promise.<boolean>}
Returns true if this object exists on the Server
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
options |
Object
|
Valid options are:
|
Returns:
- Type:
-
Promise.<boolean>
A boolean promise that is fulfilled if object exists.
fetch(options) → {Promise}
Fetch the model from the server. If the server's representation of the model differs from its current attributes, they will be overriden.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
options |
Object
|
Valid options are:
|
Returns:
- Type:
-
Promise
A promise that is fulfilled when the fetch completes.
(async) fetchFromLocalDatastore() → {Promise}
Asynchronously loads data from the local datastore into this object.
await object.fetchFromLocalDatastore();
You can create an unfetched pointer with Parse.Object.createWithoutData()
and then call fetchFromLocalDatastore()
on it.
- Overrides:
Returns:
- Type:
-
Promise
A promise that is fulfilled when the fetch completes.
fetchWithInclude(keys, options) → {Promise}
Fetch the model from the server. If the server's representation of the model differs from its current attributes, they will be overriden.
Includes nested Parse.Objects for the provided key. You can use dot notation to specify which fields in the included object are also fetched.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
keys |
String
|
Array.<(string|Array.<string>)>
|
The name(s) of the key(s) to include. |
options |
Object
|
Valid options are:
|
Returns:
- Type:
-
Promise
A promise that is fulfilled when the fetch completes.
get(attr)
Gets the value of an attribute.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The string name of an attribute. |
getSessionToken() → {String}
Returns the session token string.
Returns:
- Type:
-
String
has(attr) → {Boolean}
Returns true
if the attribute contains a value that is not
null or undefined.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The string name of the attribute. |
Returns:
- Type:
-
Boolean
increment(attr, amount) → {ParseObject|Boolean}
Atomically increments the value of the given attribute the next time the object is saved. If no amount is specified, 1 is used by default.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
amount |
Number
|
The amount to increment by (optional). |
Returns:
- Type:
-
ParseObject
|Boolean
isDataAvailable() → {Boolean}
Returns true if the object has been fetched.
- Overrides:
Returns:
- Type:
-
Boolean
isNew() → {Boolean}
Returns true if this object has never been saved to Parse.
- Overrides:
Returns:
- Type:
-
Boolean
(async) isPinned() → {Promise.<boolean>}
Asynchronously returns if the object is pinned
const isPinned = await object.isPinned();
- Overrides:
Returns:
- Type:
-
Promise.<boolean>
A boolean promise that is fulfilled if object is pinned.
isValid() → {Boolean}
Checks if the model is currently in a valid state.
- Overrides:
Returns:
- Type:
-
Boolean
newInstance() → {Parse.Object}
Creates a new instance of this object. Not to be confused with clone()
- Overrides:
Returns:
- Type:
-
Parse.Object
op(attr) → {Parse.Op}
Returns an instance of a subclass of Parse.Op describing what kind of modification has been performed on this field since the last time it was saved. For example, after calling object.increment("x"), calling object.op("x") would return an instance of Parse.Op.Increment.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
Returns:
- Type:
-
Parse.Op
The operation, or undefined if none.
pin() → {Promise}
Asynchronously stores the object and every object it points to in the local datastore, recursively, using a default pin name: _default.
If those other objects have not been fetched from Parse, they will not be stored. However, if they have changed data, all the changes will be retained.
await object.pin();
To retrieve object:
query.fromLocalDatastore()
or query.fromPin()
- Overrides:
Returns:
- Type:
-
Promise
A promise that is fulfilled when the pin completes.
pinWithName(name) → {Promise}
Asynchronously stores the objects and every object they point to in the local datastore, recursively.
If those other objects have not been fetched from Parse, they will not be stored. However, if they have changed data, all the changes will be retained.
await object.pinWithName(name);
To retrieve object:
query.fromLocalDatastore()
or query.fromPinWithName(name)
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
name |
String
|
Name of Pin. |
Returns:
- Type:
-
Promise
A promise that is fulfilled when the pin completes.
relation(String) → {Parse.Relation}
Gets a relation on the given class for the attribute.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
String |
attr The attribute to get the relation for. |
Returns:
- Type:
-
Parse.Relation
remove(attr, item) → {ParseObject|Boolean}
Atomically remove all instances of an object from the array associated with a given key.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
item |
The object to remove. |
Returns:
- Type:
-
ParseObject
|Boolean
removeAll(attr, items) → {ParseObject|Boolean}
Atomically remove all instances of the objects from the array associated with a given key.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The key. |
items |
Array.<Object>
|
The object to remove. |
Returns:
- Type:
-
ParseObject
|Boolean
revert(…keysopt)
Clears any (or specific) changes to this object made since the last call to save()
- Overrides:
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
keys |
string
|
<optional> <repeatable> |
specify which fields to revert |
save(attrsopt, optionsopt, optionsopt) → {Promise}
Set a hash of model attributes, and save the model to the server. updatedAt will be updated when the request returns. You can either call it as:
object.save();or
object.save(attrs);or
object.save(null, options);or
object.save(attrs, options);or
object.save(key, value, options);
For example,
gameTurn.save({ player: "Jake Cutter", diceRoll: 2 }).then(function(gameTurnAgain) { // The save was successful. }, function(error) { // The save failed. Error is an instance of Parse.Error. });
- Overrides:
Parameters:
Name | Type | Attributes | Description |
---|---|---|---|
attrs |
String
|
Object
|
null
|
<optional> |
Valid options are:
|
options |
String
|
Object
|
<optional> |
|
options |
Object
|
<optional> |
Used to pass option parameters to method if arg1 and arg2 were both passed as strings. Valid options are:
|
Returns:
- Type:
-
Promise
A promise that is fulfilled when the save completes.
set(key, value, options) → {ParseObject|Boolean}
Sets a hash of model attributes on the object.
You can call it with an object containing keys and values, with one key and value, or dot notation. For example:
gameTurn.set({ player: player1, diceRoll: 2 }, { error: function(gameTurnAgain, error) { // The set failed validation. } });game.set("currentPlayer", player2, { error: function(gameTurnAgain, error) { // The set failed validation. } });
game.set("finished", true);
game.set("player.score", 10);
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
key |
String
|
The key to set. |
value |
The value to give it. |
|
options |
Object
|
A set of options for the set.
The only supported option is |
Returns:
- Type:
-
ParseObject
|Boolean
true if the set succeeded.
setACL(acl, options) → {ParseObject|Boolean}
Sets the ACL to be used for this object.
- Overrides:
- See:
Parameters:
Name | Type | Description |
---|---|---|
acl |
Parse.ACL
|
An instance of Parse.ACL. |
options |
Object
|
Returns:
- Type:
-
ParseObject
|Boolean
Whether the set passed validation.
toJSON() → {Object}
Returns a JSON version of the object suitable for saving to Parse.
- Overrides:
Returns:
- Type:
-
Object
toPointer() → {Pointer}
Gets a Pointer referencing this Object.
- Overrides:
Returns:
- Type:
-
Pointer
unPin() → {Promise}
Asynchronously removes the object and every object it points to in the local datastore, recursively, using a default pin name: _default.
await object.unPin();
- Overrides:
Returns:
- Type:
-
Promise
A promise that is fulfilled when the unPin completes.
unPinWithName(name) → {Promise}
Asynchronously removes the object and every object it points to in the local datastore, recursively.
await object.unPinWithName(name);
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
name |
String
|
Name of Pin. |
Returns:
- Type:
-
Promise
A promise that is fulfilled when the unPin completes.
unset(attr) → {ParseObject|Boolean}
Remove an attribute from the model. This is a noop if the attribute doesn't exist.
- Overrides:
Parameters:
Name | Type | Description |
---|---|---|
attr |
String
|
The string name of an attribute. |
Returns:
- Type:
-
ParseObject
|Boolean
validate(attrs)
You should not call this function directly unless you subclass
Parse.Object
, in which case you can override this method
to provide additional validation on set
and
save
. Your implementation should return
- Overrides:
- See:
Parameters:
Name | Type | Description |
---|---|---|
attrs |
Object
|
The current data to validate. |
Returns:
False if the data is valid. An error object otherwise.