• AngularJS显示一个简单表格


    <!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">
    <table class="table table-striped">
    <tr data-ng-repeat="x in names">
    <td>{{x.liaohao}}</td><td>{{x.xinghao}}</td>
    </tr>
    </table>
    </div>
    </div>
    <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>

    json.json

    {
    "records": [
    {
    "liaohao": "03020001",
    "xinghao": "FR100-4T-2.2BDRV1"
    },
    {
    "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"
    }

    ]
    }

  • 相关阅读:
    [LA] 3027
    [POJ] 3264 Balanced Lineup [ST算法]
    [LA] 3644
    [Codeforces Round #248 (Div. 2)] B. Kuriyama Mirai's Stones
    [Codeforces Round #248 (Div. 2)] A. Kitahara Haruki's Gift
    [Codeforces Round #247 (Div. 2)] B. Shower Line
    [Codeforces Round #247 (Div. 2)] A. Black Square
    [UVA] 784
    [OpenJudge] 百练2754 八皇后
    449 Set、Map数据结构
  • 原文地址:https://www.cnblogs.com/melao2006/p/5088596.html
Copyright © 2020-2023  润新知