我正在尝试从下拉列表中选择一个值,并从angularJs中的相应选择ID中获取数据
我提出了angular-ui/ui-select指令
<ui-select ng-model="customer" theme="selectize">
<ui-select-match placeholder="Customer List">{{$select.selected.Name}}</ui-select-match>
<ui-select-choices repeat="customer in customers | filter: $select.search">
<span ng-bind-html="customer.Name | highlight: $select.search"></span>
<small ng-bind-html="customer.Id.toString() | highlight: $select.search"></small>
</ui-select-choices>
</ui-select>
在我的控制器上我得到了客户方法
$scope.setActiveCustomer = function(customer) {
customersService.getCustomers(customer).then(function(response) {
$scope.selectedCustomer = response;
});
};
我的问题是
一旦我选择了客户哪个事件我应该用于火灾
setActiveCustomer(比如onchange或者什么)。当我使用ng-click
时
事件被激活很多次,因为ng-click
用来控制激活。
其他问题是如何设置ui-select的初始值?
感谢
答案 0 :(得分:7)
根据ui-select FAQ,您的ng-model
表达式中应包含.
,例如:
<ui-select ng-model="model.customer" theme="selectize">
要设置初始值,您只需设置ng-model
中指定的属性,因此在您的控制器中:
$scope.model = {
customer: $scope.customers[0] // set the initial selected option
};
对于onchange事件,您可以使用$scope.$watch()
,如下所示:
$scope.$watch('model.customer', function (customer) {
$scope.setActiveCustomer(customer);
});
希望这有帮助。