我是角度JS和zurb的新手,我有一个显示位于http://jsonplaceholder.typicode.com/users的远程json数据的控制器,但我想用zurb以表的形式显示控制器的响应。当用户点击一行,一个揭示模式应弹出并显示特定用户的完整详细信息,包括:地址,电话号码可以有人帮我怎么做,下面的代码是我用过的角度控制器,我的控制器只显示数据但是我希望使用zurb表和网格在表格表格中显示。
<!DOCTYPE html>
<html>
<script src= "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="usersController">
<ul>
<li ng-repeat="x in names">
{{ x.id + ', ' + x.name + ', '+ x.username + ', '+ x.email}}
</li>
</ul>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('usersController', function($scope, $http) {
$http.get(" http://jsonplaceholder.typicode.com/users")
.success(function (data) {$scope.names = data;});
});
</script>
</body>
</html>
答案 0 :(得分:0)
正如我从他们的网站上了解到的那样,Zurb表只是具有一些时尚的外观和感觉,你可以这样使用它:
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th >User Name </th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in names">
<td ng-bind="x.id"></td>
<td ng-bind="x.name"></td>
<td ng-bind="x.username"></td>
<td ng-bind="x.email"></td>
</tr>
</tbody>
</table>