A very simple problem that I cannot solve, my markup
<select class="testing" ng-model="Car_name" ng-options="item in categories['Car_name']">
I am trying to change "Car_name" to "car_name", however the server filled in the ng-model and categories [] entries, so I'm not sure how I can look and convert to lowercase letters in my controller.
If I could do
{{Car_name|lowercase}}
It will be the simplest, but not confident in the format.
Poiro source
share