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.


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

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 htmlungdungAngularjs.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: {{sinhvien.ten}} , MSSV: {{sinhvien.mssv}}";
   
   // 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: "+$scope.sinhvien.ten +" , MSSV: "+$scope.sinhvien.mssv+"
"); 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ụ



   Tao Custom Directive trong AngularJS 


   

Ung dung AngularJS


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