4
Phương thức gọi trong bộ điều khiển chỉ thị từ bộ điều khiển khác
Tôi có một chỉ thị có bộ điều khiển riêng. Xem đoạn mã dưới đây: var popdown = angular.module('xModules',[]); popdown.directive('popdown', function () { var PopdownController = function ($scope) { this.scope = $scope; } PopdownController.prototype = { show:function (message, type) { this.scope.message = message; this.scope.type = type; }, hide:function () { …