AngularJS ng-repeat is not showing table data
问题 my controller bring data from spring app data but it does not get displayed in form. When I put constants in data it works perfectly fine. here is my code in JS controller sampleApp.controller('searchCourseController', ['$scope', '$http', function($scope, $http, $routeParams, ngTableParams ) { $scope.courses = {}; $scope.searchButton=function () { var actionUrl = 'searchCourse'; var textToSearch = $("#txtTitle").val(); if (textToSearch.length == 0) { alert("Please provide search criteria.