Skip to content

Instantly share code, notes, and snippets.

@Armenvardanyan95
Created June 24, 2017 11:41
Show Gist options
  • Save Armenvardanyan95/a4a421e68c45767a01258df704631825 to your computer and use it in GitHub Desktop.
Save Armenvardanyan95/a4a421e68c45767a01258df704631825 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
//won't 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