• 读取静态的json文件


    <!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"
    }

    ]
    }

  • 相关阅读:
    尺取法 C
    并查集
    欧拉路与欧拉回路
    C
    最大连续区间和算法总结
    C
    python中的random函数方法
    Python可视化
    MFC学习之模态对话框和非模态对话框
    dropna
  • 原文地址:https://www.cnblogs.com/melao2006/p/5088244.html
Copyright © 2020-2023  润新知