我有一个select2指令,用于多个国家/地区的自定义查询以获取数据:
// Directive
<input ng-model="filters.countries" ui-select2="filters.countryOptions"
data-placeholder="Choose a country...">
// filters.countryOptions
{
multiple: true,
query: function() {
get_list_of_countries();
}
}
// Formatted data from remote source
[
{id: 'US', text: 'United States'},
{id: 'CA', text: 'Canada'} ...
]
我正在尝试使用以下方法在控制器中设置最初选择的值:
$scope.filters.countries = [{id: 'US', text: 'United States'}];
这确实正确地设置了模型,但这是在select2初始化发生之前发生的。当我逐步完成剩余的初始化代码时,输入会在最终消隐[Object]
和输入之前暂时显示$scope.filters.countries
,但它不会在输入中显示占位符文本。
为了解决这个问题,我使用以下方法重置模型的初始值:
$scope.$on('$viewContentLoaded', function() {
setTimeout(function() {
$scope.filters.countries = [{id: 'US', text: 'United States'}];
}, 100);
});
使用setTimeout
似乎真的很苛刻。有没有更好的方法让我失踪?
根据ProLoser的要求,这里有一个demo和github票。
演示:http://plnkr.co/edit/DgpGyegQxVm7zH1dZIJZ?p=preview
GitHub问题:https://github.com/angular-ui/angular-ui/issues/455
按照ProLoser的建议,我开始使用select2的initSelection函数:
initSelection : function (element, callback) {
callback($(element).data('$ngModelController').$modelValue);
},
它可以解决问题,但仍然感觉像是一种解决方法。
答案 0 :(得分:8)
根据ProLoser的要求,这里有一个demo和github票。
演示:http://plnkr.co/edit/DgpGyegQxVm7zH1dZIJZ?p=preview
GitHub问题:https://github.com/angular-ui/angular-ui/issues/455
按照ProLoser的建议,我开始使用select2的initSelection函数:
initSelection : function (element, callback) {
callback($(element).data('$ngModelController').$modelValue);
},
它可以解决问题,但仍然感觉像是一种解决方法。
答案 1 :(得分:-1)
您是否尝试将选项初始化为:
<option selected value="0">Name</option>