Tạo Custom Directive trong AngularJS




Custom directive được sử dụng trong AngularJS để kế thừa chức năng của HTML. Custom directive được định nghĩa sử dụng hàm "directive". Một custom directive đơn giản là thay thế những thành phần cho nó được kích hoạt. Ứng dụng AngularJS trong quá trình khởi tạo tìm kiếm những thành phần phù hợp và hoạt động một lần sử dụng phương thức compile() trong custom directive sau đó sử dụng phương thức link() để tạo custom directive dựa vào scope của các directive. AngularJS cung cấp cho chúng ta cách tạo custom directive theo những loại sau:

  • Element directive - Directive kích hoạt khi một thành phần trùng tên với nó gặp phải.

  • Attribute - Directive kích hoạt khi gặp phải một thuộc tính trùng với nó.

  • CSS - Directive kích hoạt khi gặp phải một css style trùng tên với nó.

  • Comment - Directive kích hoạt khi gặp phải một comment trùng với nó.

Tìm hiểu Custom Directive trong AngularJS

Định nghĩa thẻ html tùy biến.

<sinhvien ten="Chinh"></sinhvien><br/>
<sinhvien ten="Manh"></sinhvien>

Tiếp theo, chúng ta định nghĩa custom directive để xử lý thẻ custom HTML trên.

Quảng cáo
var ungdungAngularjs = angular.module("ungdungAngularjs", []);

// Tao mot directive, trong do tham so dau tien la phan tu html de duoc dinh kem.	  
// Chung ta dang dinh kem the html la sinhvien. 
// Directive se duoc dinh kem ngay khi bat ky phan tu sinhvien nao duoc nhap vao trong html

ungdungAngularjs.directive('sinhvien', function() {
   
   // Dinh nghia doi tuong directive
   
   var directive = {};
   
   // restrict = E, chi rang directive la Element directive
   
   directive.restrict = 'E';
   
   //template thay the hoan toan phan tu voi phan text cua no. 
   
   directive.template = "Sinh vien: <b>{{sinhvien.ten}}</b> , MSSV: <b>{{sinhvien.mssv}}</b>";
   
   // scope duoc su dung de phan biet cac phan tu sinh vien dua tren tieu chi la ten.
   
   directive.scope = {
       sinhvien : "=ten"
   }
  
   // compile duoc goi trong khi khoi tao ung dung. AngularJS goi no mot lan khi html page duoc tai.
  
   directive.compile = function(element, attributes) {
      element.css("border", "1px solid #cccccc");
	  
	  // Ham hamLienKet duoc lien ket voi moi phan tu voi scope de lay du lieu cu the.
      
      var hamLienKet = function($scope, element, attributes) {
          element.html("Sinh vien: <b>"+$scope.sinhvien.ten +"</b> , MSSV: <b>"+$scope.sinhvien.mssv+"</b><br/>");
          element.css("background-color", "#ff00ff");
      }
      return hamLienKet;
   }
   return directive;
});

Định nghĩa controller để cập nhật scope cho directive. Ở đây là các đặt tên các thuộc tính của biến scope.

ungdungAngularjs.controller('sinhvienController', function($scope) {
      $scope.Chinh = {};
      $scope.Chinh.ten = "Tran Minh Chinh";
      $scope.Chinh.mssv  = 20150456;

      $scope.Manh = {};
      $scope.Manh.ten = "Cao Tran Manh";
      $scope.Manh.mssv  = 20150489;
});

Ví dụ

Quảng cáo
<html>
<head>
   <title>Tao Custom Directive trong AngularJS </title>
</head>
<body>
   <h2>Ung dung AngularJS</h2>
   <div ng-app="ungdungAngularjs" ng-controller="sinhvienController">
		<sinhvien ten="Chinh"></sinhvien><br/>
		<sinhvien ten="Manh"></sinhvien>
   </div>
   <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
   <script>
      var ungdungAngularjs = angular.module("ungdungAngularjs", []);
	  
      ungdungAngularjs.directive('sinhvien', function() {
         var directive = {};
         directive.restrict = 'E';
         directive.template = "Sinh vien: <b>{{sinhvien.ten}}</b> , MSSV: <b>{{sinhvien.mssv}}</b>";
         
         directive.scope = {
            sinhvien : "=ten"
         }
		 
         directive.compile = function(element, attributes) {
            element.css("border", "1px solid #cccccc");

            var hamLienKet = function($scope, element, attributes) {
               element.html("Sinh vien: <b>"+$scope.sinhvien.ten +"</b> , MSSV: <b>"+$scope.sinhvien.mssv+"</b><br/>");
               element.css("background-color", "#ff00ff");
            }

            return hamLienKet;
         }

         return directive;
      });
	  
      ungdungAngularjs.controller('sinhvienController', function($scope) {
            $scope.Chinh = {};
            $scope.Chinh.ten = "Tran Minh Chinh";
            $scope.Chinh.mssv  = 20150456;

            $scope.Manh = {};
            $scope.Manh.ten = "Cao Tran Manh";
            $scope.Manh.mssv  = 20150489;
      });
      
   </script>
</body>
</html>

Kết quả

Mở trang textAngularJS.jsp trên trình duyệt web và xem kết quả.

Tạo Custom Directive trong AngularJS

Đã có app VietJack trên điện thoại, giải bài tập SGK, SBT Soạn văn, Văn mẫu, Thi online, Bài giảng....miễn phí. Tải ngay ứng dụng trên Android và iOS.

Theo dõi chúng tôi miễn phí trên mạng xã hội facebook và youtube:

Các bạn có thể mua thêm khóa học JAVA CORE ONLINE VÀ ỨNG DỤNG cực hay, giúp các bạn vượt qua các dự án trên trường và đi thực tập Java. Khóa học có giá chỉ 300K, nhằm ưu đãi, tạo điều kiện cho sinh viên cho thể mua khóa học.

Nội dung khóa học gồm 16 chuơng và 100 video cực hay, học trực tiếp tại https://www.udemy.com/tu-tin-di-lam-voi-kien-thuc-ve-java-core-toan-tap/ Bạn nào có nhu cầu mua, inbox trực tiếp a Tuyền, cựu sinh viên Bách Khoa K53, fb: https://www.facebook.com/tuyen.vietjack

Follow facebook cá nhân Nguyễn Thanh Tuyền https://www.facebook.com/tuyen.vietjack để tiếp tục theo dõi các loạt bài mới nhất về Java,C,C++,Javascript,HTML,Python,Database,Mobile.... mới nhất của chúng tôi.




Tài liệu giáo viên