我在溢出时查看了ng-option的其他几个示例,但在我的下拉菜单中尝试读取所选值时似乎没有任何效果。它始终打印为未定义。
特别是我遇到的问题是我在ng-change下的函数调用是打印出未定义的。
这是我遵循的最新例子 AngularJs Get the value of the selected option
svg drawables
答案 0 :(得分:0)
如果你这样使用它会起作用..
<select name="repeatSelect" id="repeatSelect" ng- model="data.model">
<option ng-repeat="option in data.availableOptions" value="{{option.id}}">{{option.name}}</option>
</select>
&#13;