指令永远不会被称为angularjs

时间:2015-04-01 06:28:24

标签: javascript jquery html angularjs angularjs-directive

当用户点击按钮时,我们正在创建一个指令来增加和减少文本框中的数字。

以下是我的自定义指令的代码。

var CEDirectives = angular.module('App.customnumberdirectives', [])
.directive('ngcustomNumber', ['$compile', function ($compile) {
var TEMPLATE_URL = '/customnumber/index.html';
var tem = '<div class="wrapper">' +
          '  <input type="text" data-ng-model="{{model}}" data-ng-blur="onBlurHandler()">' +
          '  <button ng-click="Increase()" style="cursor:pointer; background-color: transparent">INC</button>' +
          '  <button ng-click="Decrease()" style="cursor:pointer; background-color: transparent">DEC</button>' +
          '</div>';

// Set the default template for this directive
$templateCache.put(TEMPLATE_URL,tem);

return {
    restrict: "E",
    scope: {
        model: '@',
        onblurevent: '&'
    },
    replace: true,
    templateUrl: function (element, attrs) {
        return attrs.templateUrl || TEMPLATE_URL;
    },
    link: function (scope, element, attributes) {

        scope.onBlurHandler = function () {
            if (scope.onblurevent) {
                scope.onblurevent();
            }
        };

        scope.Increase = function () {
            alert('Inc');
        };
        scope.Decrease = function () {
            alert('Dec');
        };
    }
};
} ]);

在html视图中: -

 <ngcustomNumber model="weight" onblurevent="Save"></ngcustomNumber>

(1)控制台没有错误。

(2)尝试将警报放在指令的顶部。没有提示警报消息。

提前致谢!

2 个答案:

答案 0 :(得分:0)

试试这个:

<ngcustom-number model="weight" onblurevent="Save"></ngcustom-number>

答案 1 :(得分:0)

因为你的编译没有用正确的方式完成。你必须确保给定的范围是ON模板。为了检查它你可以在模板中打印范围id。你知道每个范围都有它的ID,所以如果指令范围和模板范围ID不一样,你的问题在于它,解决方案是:

以正确的方式编译它。在其中传递指令的范围。 $ compile服务:$ compile(template)(directiveScope);

你可以控制范围,并会看到我正在谈论的字段