AngularJS显示值

时间:2014-10-08 09:19:51

标签: html json angularjs

我的.html:

{{data}}

将显示:

[ { "images" : [ { "__v" : 0,
          "_id" : "542e57a709d2d60000c93953",
          "name" : "image1",
          "url" : "http://www.syll.com"
        },
        { "__v" : 0,
          "_id" : "543249050fcae2f082ca3e70",
          "name" : "imageOCR1",
          "url_image" : "http://meta-e.aib.uni-linz.ac.at/ocr.gif"
        },
        { "__v" : 0,
          "_id" : "543249050fcae2f082ca3e71",
          "name" : "imageOCR2",
          "url_image" : "http://www.textcreationpartnership.org/xxx.jpg"
        }
      ],
    "itemCount" : 70,
    "pageCount" : 7
  } ]

但我想在" pageCount" 中显示值,以便 7

如果没有ng-repeat,我怎么能这样做? 顺便说一下,y控制器工作正常。

我试过了:

{{data.pageCount}}

但它没有用。

谢谢!

[EDIT]使用righ JSON更改并格式化。

1 个答案:

答案 0 :(得分:1)

您的数据看起来都包含在单个元素数组中。你试过以下这个吗?

{{data[0].pageCount}}