我对 Angular 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>