質問

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}}"
役に立ちましたか?

解決

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" />
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top