Pregunta

I have something like this:{{item.bla|| item.bla2}}

how can i put this in ng-model, i can't just do it like this:

input class="form-control" type="text" ng-model="{{item.bla || item.bla2}}"
¿Fue útil?

Solución

Maybe this will help (assuming item is in scope):

<input class="form-control" type="text" ng-init="model= item.bla || item.bla2" 
          ng-model="model" />
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top