Android 内容未显示在屏幕上

Android 内容未显示在屏幕上,android,mobile,ionic,Android,Mobile,Ionic,我正在尝试制作一个在新闻提要中显示我的博客文章的应用程序。我正在使用ionic。我的问题是,当我可以在控制台窗口中访问这些文章时,这些文章的标题不会显示在html页面上。我无法理解这一问题的原因。请帮助我解决此问题。 我的html页面的代码是 <ion-view view-title="TheGeekInn" ng-controller="homeCtrl"> <ion-content> <h1>Geek</h1> <di

我正在尝试制作一个在新闻提要中显示我的博客文章的应用程序。我正在使用ionic。我的问题是,当我可以在控制台窗口中访问这些文章时,这些文章的标题不会显示在html页面上。我无法理解这一问题的原因。请帮助我解决此问题。 我的html页面的代码是

<ion-view view-title="TheGeekInn" ng-controller="homeCtrl">
  <ion-content>
    <h1>Geek</h1>
    <div ng-repeat="story in stories">
        {{story.title}}
    </div>
  </ion-content>
</ion-view>

我试过这个,它成功了。不幸的是,我不知道为什么。希望这有帮助

$http.get('http://www.thegeekinn.in/category/technical/?json=1').success(function(response){
            $scope.stories=response.posts;
        });
$http.get('http://www.thegeekinn.in/category/technical/?json=1').success(function(response){
            $scope.stories=response.posts;
        });