Add Student
View Students
Add Student {{message}} View Students {{message}} var mainApp = angular.module("mainApp", ['ngRoute']); http://vietjack.com/ Trang chia sẻ học online miễn phí Page http://vietjack.com/angularjs/index.jsp Copyright © vietjack.com mainApp.config(['$routeProvider', function($routeProvider) { $routeProvider when('/addStudent', { templateUrl: 'addStudent.jsp', controller: 'AddStudentController' }) when('/viewStudents', { templateUrl: 'viewStudents.jsp', controller: 'ViewStudentsController' }) otherwise({ redirectTo: '/addStudent' }); }]); mainApp.controller('AddStudentController', function($scope) { $scope.message = "This page will be used to display add student form"; }); mainApp.controller('ViewStudentsController', function($scope) { $scope.message = "This page will be used to display all the students"; }); Kết Mở trang textAngularJS.jsp trình duyệt web bạn thấy kết sau http://vietjack.com/ Trang chia sẻ học online miễn phí Page http://vietjack.com/angularjs/index.jsp http://vietjack.com/ Trang chia sẻ học online miễn phí Copyright © vietjack.com Page ... http://vietjack.com/ Trang chia sẻ học online miễn phí Page http://vietjack.com /angularjs/ index.jsp http://vietjack.com/ Trang chia sẻ học online miễn phí Copyright © vietjack.com Page ... mục đường dẫn với trang HTML Nếu trang HTML không định nghĩa, ng-template sử dụng id=”addStudent.jspl” Chúng ta sử dụng ng-template http://vietjack.com/ Trang chia sẻ học online miễn phí Page... miễn phí Page http://vietjack.com /angularjs/ index.jsp "otherwise" sử dụng để thiết lập view mặc định "controller" để thiết lập controller tương ứng với view Copyright © vietjack.com Ví dụ