慕虎7371278
AngularJS提供$http控制,可以作为一项服务从服务器读取数据。服务器可以使一个数据库调用来获取记录。 AngularJS需要JSON格式的数据。一旦数据准备好,$http可以用以下面的方式从服务器得到数据。function studentController($scope,$http) {var url="data.txt";$http.get(url).success( function(response) {$scope.students = response;});