Skip to content

Instantly share code, notes, and snippets.

@Armenvardanyan95
Created June 24, 2017 11:43
Show Gist options
  • Save Armenvardanyan95/9e44fb1866466f038a5cc0f70002f0a7 to your computer and use it in GitHub Desktop.
Save Armenvardanyan95/9e44fb1866466f038a5cc0f70002f0a7 to your computer and use it in GitHub Desktop.
...
ngOnInit(){
this.userService.getAllUsers().then((users: User[]) => {
this.users = users.map((user: User) => {return {label: user.fullName, value: user.id} });
}) //service returns a Promise
//this works, mapped to an array of SelectItem-s
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment