Angularjs 使用Angular从Api检索数据

Angularjs 使用Angular从Api检索数据,angularjs,api,Angularjs,Api,这是我的api,我想从中解析第一作者的名字 { status: "ok", source: "the-next-web", sortBy: "latest", articles: - [ { author: "Napier Lopez", title: "Microsoft reveals the first Cortana-powered Amazon Echo competitor", description: "We first

这是我的api,我想从中解析第一作者的名字

{
  status: "ok",
  source: "the-next-web",
  sortBy: "latest",
  articles: - [
    {
      author: "Napier Lopez",
      title: "Microsoft reveals the first Cortana-powered Amazon Echo competitor",
      description: "We first got wind of a Cortana-powered speaker was on the way back in December, but now it's finally here. Microsoft and Harmon Kardon today revealed the 'Invoke,' the first Amazon ...",
      url: "https://thenextweb.com/microsoft/2017/05/08/microsoft-reveals-first-cortana-powered-amazon-echo-competitor/",
      urlToImage: "https://cdn2.tnwcdn.com/wp-content/blogs.dir/1/files/2017/05/Harmon-Kardon-Invoke-Cortana-Speaker-Microsoft.jpg",
      publishedAt: "2017-05-08T18:35:18Z"
    },
    {
      author: "Rachel Kaser",
      title: "Facebook fights fake news in UK with newspaper ads and account purges",
      description: "As the UK election draws near, Facebook is cleaning house. The social media giant is taking two major steps to combat false news at a critical moment: deleting accounts and buying ...",
      url: "https://thenextweb.com/facebook/2017/05/08/facebook-fights-fake-news-uk-newspaper-ads-account-purges/",
      urlToImage: "https://cdn2.tnwcdn.com/wp-content/blogs.dir/1/files/2017/04/Screen-Shot-2017-04-14-at-14.24.46.jpg",
      publishedAt: "2017-05-08T18:03:29Z"
    }
  ]
}
我已将所有这些数据存储在$scope.content中,并由此检索第一作者姓名

{{content.author}}

但它没有显示任何东西。
你能告诉我为什么会这样以及如何修复它吗?

你应该在
内容上重复ng。文章

<tr ng-repeat="x in content.articles">
    <td>{{ x.author }}</td>
    <td>{{ x.title }}</td>
</tr>

{{x.author}}
{{x.title}}

除了使用“content”前缀{{content.author}}之外,您还能够访问作用域的任何其他参数吗?kk得到了这个消息thanx@RinkuMalik查看演示