zoukankan      html  css  js  c++  java
  • 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"
    }

    ]
    }

  • 相关阅读:
    应用程序发生异常,未知的软件异常0x0eedfade,位置为0x0000001355C
    关于条件表达式的理解
    *p++、*++p、(*p)++、++(*p)的比较
    排序算法01_选择排序
    递归_汉诺塔问题
    排序算法00_冒泡排序
    深入理解C语言
    虚拟机_第一篇---创建Linux虚拟机
    虚拟机_第〇篇---虚拟机的下载安装与功能简介
    对i++与++i的理解
  • 原文地址:https://www.cnblogs.com/melao2006/p/5088596.html
Copyright © 2011-2022 走看看