我使用 HTML 选择元素来显示其中包含枚举值的实体字段。
在页面中,我有多个实体字段,因此有多个选择元素。
我使用 Angular ng-repeat 来显示每个字段,方法是在我的表格行的 ng-repeat 中创建一个选择。当从任何下拉列表中选择项目时,我想捕获“onselect”事件,问题是,每当用户在一个下拉列表中选择一个值时,该事件都会为页面上的所有下拉列表触发。
我的html:
<div ng-app>
<div ng:controller="TodoCtrl">
<table>
<tr ng-repeat="prop in customForm">
<td>{{prop.legend}}</td>
<td>
<select ng-name="prop.name" ng-model="entity[prop.name]"
ng-options="val as val for val in prop.enumeratedValues"
onselect="{{fireSelectEvent(prop.name)}}"></select>
</td>
</tr>
<tr><td>Calls Made</td></tr>
<tr ng-repeat="call in callLog">
<td>{{call}}</td>
</tr>
</table>
</div>
</div>
我的控制器:
//'use strict';
function TodoCtrl($scope) {
$scope.customForm =
[
{name:"aval", legend: "A Value", enumeratedValues: ["1","2","3"], editable: true},
{name:"bval", legend: "B Value", enumeratedValues: ["4","5","6"], editable: true},
{name:"cval", legend: "C Value", enumeratedValues: ["7","8","9"], editable: true}
];
$scope.entity = {};
$scope.callLog = [];
$scope.fireSelectEvent = function( propName )
{
console.log("Prop=" + propName + " value=" + $scope.entity[propName]);
$scope.callLog.push( propName );
}
}
我的小提琴:
祝你好运。我们都指望着你。