最佳答案
I need to use an associative array as data source for my select
options using AngularJS.
Is it possible to use an array like this?
{
"key1": "val1",
"key2": "val2",
"key3": "val3",
...
}
and get something like this:
<select>
<option value="key1">val1</option>
<option value="key2">val2</option>
<option value="key3">val3</option>
...
</select>
I read docs, but I can't understand how to achieve this.