I search around the web and no problem to find how display an Observable<MyModel[]>
. But I don't find how display an Observable<MyModel>
to a form.
I'd like display firstName
value I tried this :
{{ myModel.firstName | async }}
and I'd like use it (bidirectional) in an I tried this :
<input type="text" [(value)]="myModel.firstName">
I got this error : Cannot read property 'firstName ' of undefined at Object.eval [as updateRenderer]
Thanks,