Computed Properties
Dynamic, cached, properties that can return any CFML data type.
Last updated
Dynamic, cached, properties that can return any CFML data type.
Last updated
Computed Properties are dynamic properties and are helpful for deriving values from a database or another persistent store like a cache.
Computed Properties are similar to with some key differences:
They are declared as inline functions using computed.
They can return any CFML data type, not just values that can be parsed by JavaScript like .
You can define Computed Properties on your components using computed.
You can access Computed Properties in your component template using propertyName().
Computed Properties are cached for the lifetime of the request. If you reference your Computed Property three times in your component template or from within a component action, it will only execute once.
You can prevent caching on a computed property by passing a false argument when invoking it.
You can also access Computed Properties from within your .