Seems like a very basic question but I can't get the syntax right, my json array
{"varremise":[
{"name":"Devise",
"vars":["EUR","USD","Notprovided","Notprovided"]
},...
}
Can anyone help to get the list of vars without Notprovided String, i have write this but it dont work
<option ng-repeat="ite in item.vars | filter:{ vars: '!Notprovided'}" value="{{ite}}">{{ite}}</option>
itemvariable?item.vars, that's to say["EUR","USD","Notprovided","Notprovided"]. Do you see where is you error now?{vars: '…'}, but you're filtering["EUR","USD","Notprovided","Notprovided"]. Do you see what's going on, now?