I\'d like to bind a select element to a list of objects -- which is easy enough:
@Component({ selector: \'myApp\', template: `My Application&
You can do this too without the need to use [(ngModel)] in your tag
[(ngModel)]
Declare a variable in your ts file
toStr = JSON.stringify;
and in you template do this
{{v}}
and then use
let value=JSON.parse(event.target.value)
to parse the string back into a valid JavaScript object