在Spring中使用角度HTTP将数据提取到网页

时间:2014-11-14 05:34:56

标签: angularjs rest

<table>
<th>
<tr>.........</tr>
</th>
</table>

我希望在Spring项目中使用angular的帮助将MySQL DB中的数据显示到上面的<tr>.....</tr>中。

这可能是最简单的方法吗?

1 个答案:

答案 0 :(得分:1)

我建议你:

在您看来:

 <table ng-controller="MyCtrl"> <!--your ctrl-->
   <tr ng-repeat="item in items"><!--place the ng-repeat-->
     <td>{{item.name}}</td> <!--bind the data-->
   </tr>
 </table>

在您的控制器中:

var app = angular.module('plunker', []); // most important to define angular module

app.controller('MyCtrl', function($scope, $http) { // controller def
  $http.get('data.json').
    success(function(data) { // ajax
       $scope.items = data; // update the items var in $scope here
    });
});

data.json将是您将从中获取数据的网址。看看添加的demo plunkr。

Plunkr Demo