I have a user model that looks like:
{
accessFailedCount: 0
active: false
created: "2014-05-09T14:39:56.867Z"
email: "[email protected]"
emailConfirmed: false
fullName: "Austin Frtizer"
id: "536ce8bce352b815b8791f53"
imageId: null
isMe: true
lastLogin: "2014-05-09T14:39:56.867Z"
userName: "admin"
}
I want to add a helper that will return the display name from my model instance... but it could be a combination of values depending on the values filled out such as:
fullName || email || userName
with other JS frameworks I've used you could 'wrap' the model results from the server with helper methods like myInstanceModel.displayName()
.
I know you could do this a million different ways, but I was wondering if there what the 'angular way' would be for something like this.
One of the million ways, create a filter:
then in your html:
or use it inside a controller: