指令双向绑定手表属性



我正在尝试在我的angularjs应用中使用指令,这是我要使用的第一个指令,所以我不确定它是否正确。

问题是,我想将UI选择指令包装到另一个指令中,然后如果选择了新值,我想观看SELEC。我能够填充选择,但我不知道为什么它不会触发手表...这是控制器:

.controller('IngredientesDatosGeneralesController' ,['$scope', 'PrivateAlergenosUtilsService', 
                                                     'PrivateRestauranteService', 'PrivateIngredienteService',
                                                     function($scope, PrivateAlergenosUtilsService, PrivateRestauranteService,
                                                             PrivateIngredienteService){
    var _this = this;
    _this.PrivateIngredienteService = PrivateIngredienteService;
    _this.proveedorSeleccionado = null;
    _this.proveedores = [];
    PrivateRestauranteService.getProveedores().then(
            function(proveedores){
                _this.proveedores = proveedores;
            },
            function(error){
                _this.proveedores = [];
            }
    );
    $scope.$watch('cntrl.proveedorSeleccionado', function(newValue,oldValue){
          if (newValue && newValue!=oldValue){
              _this.PrivateIngredienteService.getIngregienteDTO().id = _this.proveedorSeleccionado.id;
          }
    }, true);
}]);

以下是指令:

.directive('comboDirective', [
                                       function(){
    return {
        restrict : 'E',
        templateUrl: 'resources/js/private/views/utils/combo/combo.html',
        scope : {
            seleccionado : '=',
            elementos : '=',
            descripcion : '@'
        }
    }}]);

combo.html:

    <div class="col-xs">
    <label translate>{{descripcion}}</label>
</div>
<div class="col-xs">
    <div class="selectStyle">
        <ui-select ng-model="seleccionado" theme="bootstrap" register-custom-form-control disable-validation-message="" required>
            <ui-select-match placeholder="{{'input.seleccionar' | translate}}">{{$select.selected.descripcion}}</ui-select-match>
            <ui-select-choices repeat="elemento in elementos | filter: $select.search">
              <div ng-bind-html="elemento.descripcion | highlight: $select.search"></div>
            </ui-select-choices>
           </ui-select>
           <i class="fa fa-chevron-down"></i>
    </div>
</div>

最后,这就是我称之为指令的方式:

<div ng-controller="IngredientesDatosGeneralesController as cntrl">
    <combo-directive 
        seleccionado="cntrl.proveedorSeleccionado" 
        descripcion="formulario.proveedor"
        elementos="cntrl.proveedores">
    </combo-directive>
</div>

预先感谢

我找到了正在发生的事情...我不知道为什么,但是如果我将此配置放在指令中并使用'cntrl'。在HTML中的" Seleccionado"one_answers" Elementos"值之前的前缀,它可以正常工作。

'use strict';
angular.module("private.directives")
    .directive('comboDirective', [
                                           function(){
        return {
            restrict : 'E',
            templateUrl: 'resources/js/private/views/utils/combo/combo.html',
            scope : {
                seleccionado : '=',
                elementos : '=',
                descripcion : '@'
            },
            controller : ['$scope', function ($scope) {
            }],
            controllerAs : 'cntrl',
            bindToController: true
        }
}]);

相关内容

  • 没有找到相关文章

最新更新