我有一个角度应用程序,我想等到数据绑定到选择下拉,直到我将jquery方法应用于选择下拉列表。
在我之前的相关问题中,我能够使用以下代码成功填充下拉列表。
<select name="shippingState" id="shippingState" ng-model="accountAddresses.shippingState" ng-options ="state.abbreviation for state in states track by state.abbreviation" class="state form-control" size="1">
</select>
现在我想应用jquery方法(自定义selectbox下拉样式库)。
加载数据后,我可以在浏览器控制台中手动应用该方法。 问题是我只能手动在浏览器控制台中执行操作。
当提取下拉数据时,我无法以角度运行相同的方法。
问题: 如何在Angular中完成数据绑定时触发操作?
编辑 - 我创建了一个指令并修改了我的html来触发指令。
我仍然没有自定义样式元素。
链接到根控制器的指令
directive('onDataBind', function (id) {
alert(id);
function link(elem, id) {
elem.ready(function(id){
$scope.CreateDropDown(id);
});
}
})
HTML修改
<select name="billingState" id="billingState" ng-model="accountAddresses.billingState" ng-options ="state.abbreviation for state in states track by state.abbreviation" on-data-bind="CreateDropDown('billingState')" class="state form-control" size="1">
</select>
在范围级别创建下拉列表
$scope.CreateDropDown = function(id){
$("#"+id).selectbox();
//selectbox is the following library - https://github.com/olivM/jQuery-Selectbox
}
答案 0 :(得分:0)
以下指令代码有助于解决此问题。我按照建议使用了指令和超时。
directive('onDataBind', function () {
function link(scope, elem) {
var id = elem.attr("id");
elem.ready(function(){
setTimeout(function () {
$("#"+id).selectbox();
}, 1000);
//$('#'+id + ' .sbHolder > .sbOptions').wrap("<div class='optionsDiv'></div>");
//$("#"+id + " .sbHolder > a.sbToggle, "+id+" + .sbHolder a.sbSelector").wrapAll("<div class='selectDiv'></div>");
})(id);
}
return {
link: link,
restrict: 'A',
};
})