Questo contenuto non è disponibile nella lingua dell'utente. È visualizzata la versione inglese.
getProperties method
Note: STABLE.
This API is reliable and breaking changes are unlikely.
This API is reliable and breaking changes are unlikely.
backendApi.getProperties()
Get properties for this object.
Version history
Introduced | 1.0 |
Parameters
None
Returns
A promise of object properties.
Tip: For more information regarding a promise, see https://code.angularjs.org/1.7.0/docs/api/ng/service/$q#the-promise-api.
Example
var me = this;
this.backendApi.getProperties().then(function(reply){
reply.title = 'New title';
me.backendApi.setProperties(reply);
});