AngularJS无法正确显示信息

时间:2016-04-12 17:28:12

标签: angularjs json ionic-framework

我正在使用AngularJs,我遇到了视图问题。这是我的代码和结果。

任何帮助将不胜感激。

#apache-activemq-5.10/bin/activemq query  -QQueue=* --view Name | grep Name

Name = test.queue
Name = notification-q

enter image description here

1 个答案:

答案 0 :(得分:3)

您应该指定从回复中检索到的data

$scope.subjects = data.data;

<强>标记

<ion-view title="The Subjects" id="page1">
    <ion-content padding="true" class="has-header">
        <ion-list>
           <ion-item ng-repeat="subject in subjects">
               {{subject.Lible}}
           </ion-item>
        </ion-list>
    </ion-content>
</ion-view>

通过在变量名中进行一些调整,使代码更具可读性。

var promise = SubjectService.getSubjects();
promise.then(function (response) {
    $scope.subjects = response.data;
});