StoreProxy
Configs
1
Configs
1Allow object like interaction with the Store. For example:
const store = new Store({
objectify : true,
data : [
{ id : 'batman', name : 'Bruce' }
]
});
// retrieve using id as property
const record = store.batman;
// add as property
store.superman = { name : 'Clark' };
// delete to remove
delete store.batman;
Properties
2
Properties
2Identifies an object as an instance of StoreProxy class, or subclass thereof.
Identifies an object as an instance of StoreProxy class, or subclass thereof.