标签:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <meta http-equiv="X-UA-Compatible"content="IE=edge" />
    <meta name="viewport"content="width=device-width,initial-scale=1" />
    <title></title>
	<meta charset="utf-8" />
    <link rel="stylesheet"href="bootstrap-3.3.6-dist/css/bootstrap.min.css" />
</head>
<body>
    <div class="container"style="padding:50px">
        <div data-ng-app="myApp"data-ng-controller="myCtrl">
            <ul>
                <li data-ng-repeat="x in names">{{x.liaohao+" "+x.xinghao}}</li>
            </ul>
        </div>
    </div>
json.json
    <script src="jQuery/jquery-2.1.4.min.js"></script>
    <script src="bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
    <script src="http://apps.bdimg.com/libs/angular.js/1.4.6/angular.min.js"></script>
    <script>
        angular.module("myApp", []).controller("myCtrl", function ($scope, $http) { $http.get("json/json.json").success(function (response) { $scope.names=response.records})})
    </script>
</body>
</html>
{
  "records": [
    {
      "liaohao": "03020001",
      "xinghao": "FR100-2S-0.7BDRV1"
    },
    {
      "liaohao": "03020002",
      "xinghao": "FR100-4T-2.2BDRV2"
    },
     {
      "liaohao": "03020003",
      "xinghao": "FR100-4T-2.2BDRV3"
    },
     {
      "liaohao": "03020004",
      "xinghao": "FR100-4T-2.2BDRV4"
    },
     {
      "liaohao": "03020005",
      "xinghao": "FR100-4T-2.2BDRV5"
    },
     {
      "liaohao": "03020006",
      "xinghao": "FR100-4T-2.2BDRV6"
    },
     {
      "liaohao": "03020007",
      "xinghao": "FR100-4T-2.2BDRV7"
    }
    
  ]
}
标签:
原文地址:http://www.cnblogs.com/melao2006/p/5088244.html