有棱角的如何将ui.select注入到使用xeditable的指令中



我使用的是xeditable和ui.select。我需要通过搜索配置select才能使用xeditable。所以,我创建了指令:

var xeditable = angular.module('xeditable');
xeditable.directive('editableUiSelect', ['editableDirectiveFactory', 'editableNgOptionsParser',
        function(editableDirectiveFactory, editableNgOptionsParser) {
            return editableDirectiveFactory({
                directiveName: 'editableUiSelect',
                inputTpl: '<span></span>',
                render: function() {
                    this.parent.render.call(this);
                    var parsed = editableNgOptionsParser(this.attrs.eNgOptions);
                    var filter = " | filter: $select.search";
                    var html = "<ui-select ng-model='"+parsed.ngModel+"'>"+ 
                        "<ui-select-match>"+ "<span ng-bind='"+$select.selected.name+"'></span></ui-select-match>"+
                        "<ui-select-choices repeat='"+parsed.ngRepeat+filter+"'>"+"<span ng-bind='"+parsed.locals.displayFn+"'></span>"+
                        "</ui-select-choices></ui-select>";
                    this.inputEl.removeAttr('ng-model');
                    this.inputEl.removeAttr('ng-options');
                    this.inputEl.html(html);
                },
                autosubmit: function() {
                    // do smth
                }
            });
        }]);

这不起作用,因为找不到$select。$selectuiSelectCtrl控制器,在uiSelect指令中使用。

看起来,我需要将ui.select注入到我的指令中,但我不知道如何做到这一点并保持当前的可xeditable实例。

问题:如何将ui.select或仅$select控制器注入指令?

如果我提供的细节不够,请告诉我。

已解决我根据@jusopi答案更改了我的指令代码,并将$select$parent.data包装成引号,所有这些都开始工作:

var Dashboard = angular.module('Dashboard');
Dashboard.directive('editableUiSelect', ['editableDirectiveFactory', 'editableNgOptionsParser',
        function(editableDirectiveFactory, editableNgOptionsParser) {
            return editableDirectiveFactory({
                directiveName: 'editableUiSelect',
                inputTpl: '<span></span>',
                render: function() {
                    this.parent.render.call(this);
                    var parsed = editableNgOptionsParser(this.attrs.eNgOptions);
                    var filter = " | filter: $select.search";
                    var html = "<ui-select ng-model='$parent.data'>"+ 
                        "<ui-select-match>"+ "<span ng-bind='$select.selected.name'></span></ui-select-match>"+
                        "<ui-select-choices repeat='"+parsed.ngRepeat+filter+"'>"+"<span ng-bind='"+parsed.locals.displayFn+"'></span>"+
                        "</ui-select-choices></ui-select>";
                    this.inputEl.removeAttr('ng-model');
                    this.inputEl.removeAttr('ng-options');
                    this.inputEl.html(html);
                },
                autosubmit: function() {
                    // do smth
                }
            });
        }]);

这假设您的问题是因为您没有正确注入模块依赖项(正如@uday所指出的)

据我所知,您不能/不能向现有模块添加额外的模块依赖项。以下内容将覆盖由外部lib定义的xeditable模块,因为此语法定义模块(而不是让模块定义其他可注入构造)。

angular.module( <name>, <other-modules-array> )

相反,您需要在自己的模块中定义指令,确保引用xeditableui.select模块,如下所示:

angular.module( 'myApp', [ 'xeditable', 'ui.select' ])
.directive( 'editableUiSelect', [ 
    'editableDirectiveFactory', 
    'editableNgOptionsParser',
    function( editableDirectiveFactory, editableNgOptionsParser ) { 
        ...
    }
])

您可以像这样进行依赖项注入var xeditable=angular.module('xeditable',['ui.select']);

现在,ui.select将在xeditable中提供。

相关内容

  • 没有找到相关文章

最新更新