简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <script src="https://cdn.staticfile.org/angular.js/1.6.3/angular.min.js"></script> <style> table, th , td { border: 1px solid grey; border-collapse: #eee; padding: 5px; } table tr:nth-child(odd) { background-color: #ddd; } table tr:nth-child(even) { background-color: #ffffff; } </style> <div ng-app="myApp" ng-controller="customersCtrl"> <table> <tr ng-repeat="x in names"> <td>{{ x.Name }}</td> <td>{{ x.Country }}</td> </tr> </table> </div> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer> <script> var app = angular.module('myApp', []); app.controller('customersCtrl', function($scope, $http) { $http.get("/static/tiy/html/angularjs/customer.json?lang=php") .then(function (result) { $scope.names = result.data.records; }); }) </script>
运行结果: