开发者社区> 问答> 正文

有关于 Angular根据JSON数据动态生成在网页上的列表 问题

[
  {
    "meta": {
      "author": "test", 
      "date_create": "2015-10-14T00:00:00", 
      "date_modify": "2015-10-14T00:00:00", 
      "filename": "微信页面整合", 
      "git_username": "kk", 
      "subdir": "article", 
      "subtitle": null, 
      "tags": [
        "api", 
        "微信", 
        "开发文档"
      ], 
      "title": "微信页面整合"
    }
  }, 
  {
    "meta": {
      "author": "Waylan LimbergJohn Doe", 
      "date_create": "2015-10-14T00:00:00", 
      "date_modify": "2015-10-14T00:00:00", 
      "filename": "python2编码问题.md", 
      "git_username": "guyskk", 
      "subdir": "article", 
      "subtitle": null, 
      "tags": [], 
      "title": "python2编码问题"
    }
  }
]

json文件格式如上,如何通过angular根据返回的json文件(可能有多个文章数据),动态生成列表。要求能读取到meta和title。。第一次用angular,卡在这种数组套对象,对象里面又是对象的模式了。。。好几天了。

展开
收起
爵霸 2016-03-05 09:07:05 2458 0
1 条回答
写回答
取消 提交回答
  • 用ng-repeat应该很容易做吧

    html

    <!DOCTYPE html>
    <html ng-app="plunker">
    
      <head>
        <meta charset="utf-8" />
        <title>AngularJS Plunker</title>
        <script>document.write('<base href="' + document.location + '" />');</script>
        <link rel="stylesheet" href="style.css" />
        <script data-require="angular.js@1.4.x" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.6/angular.min.js" data-semver="1.4.6"></script>
        <script src="app.js"></script>
      </head>
    
      <body ng-controller="MainCtrl">
        <div ng-repeat="ele in data">
          <p>{{ele.meta.author}}</p>
          <p>{{ele.meta.title}}</p>
          <br>
        </div>
      </body>
    
    </html>

    js

    var app = angular.module('plunker', []);
    
    app.controller('MainCtrl', function($scope) {
      $scope.name = 'World';
      $scope.data = [
          {
            "meta": {
              "author": "test", 
              "date_create": "2015-10-14T00:00:00", 
              "date_modify": "2015-10-14T00:00:00", 
              "filename": "微信页面整合", 
              "git_username": "kk", 
              "subdir": "article", 
              "subtitle": null, 
              "tags": [
                "api", 
                "微信", 
                "开发文档"
              ], 
              "title": "微信页面整合"
            }
          }, 
          {
            "meta": {
              "author": "Waylan LimbergJohn Doe", 
              "date_create": "2015-10-14T00:00:00", 
              "date_modify": "2015-10-14T00:00:00", 
              "filename": "python2编码问题.md", 
              "git_username": "guyskk", 
              "subdir": "article", 
              "subtitle": null, 
              "tags": [], 
              "title": "python2编码问题"
            }
          }
        ];
    });
    2019-07-17 18:52:53
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Angular从零到一 立即下载
低代码开发师(初级)实战教程 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载