getExtra(key)
Returns extra (for given object for given key).
Arguments
key
(string): Key to get an extra by.
Lifecycle
preGetExtra
Event name:
preGetExtra
Properties passed:cacheInstance
reference to cache instance (this
)key
key passed togetExtra
method
Returns: (object): object containing properties:
cacheInstance
reference to cache instance (this
)key
key passed through handlers added forpreGetExtra
event
postGetExtra
Event name:
postGetExtra
Properties passed:cacheInstance
reference to cache instance (this
) returned bypreGetExtra
key
key returned bypreGetExtra
extra
extra (object) returned by adapter using its getExtra method
Returns: (object): object containing properties:
cacheInstance
reference to cache instance (this
)key
key passed through handlers added forpostGetExtra
eventextra
extra passed through handlers added forpostGetExtra
event
Eventually
getExtra
returns extra returned bypostGetExtra
.
Returns
(object): Object, extra from item.
(undefined): If item is not found (thus no extra can be taken from it), returns undefined
.
Example
Last updated