Angular和Jade的问题,我的数据没有显示

时间:2015-08-02 18:40:23

标签: javascript angularjs pug

我使用以下代码从Twitch api获取数据。我想要用户名,个人资料图片和流媒体状态。到目前为止,我从api获取数据,但是,我似乎无法使用Jade显示它。

$.getJSON(url, function(data) {
            $scope.getdata.push([username, data, false]);
            count--;
            if (count === 0) {
              $scope.getdata = $scope.getdata.sort();
            }
          });
        } else {
          $scope.getdata.push([username, data, true]);
          count--;
          if (count === 0) {
            $scope.getdata = $scope.getdata.sort();
          }
       angular.forEach($scope.getdata,function(value,index){
                $scope.name = value[0];
         console.log($scope.name);
            })

        }
    })

HTML(玉):

main(ng-app='heyTwitch')
  section(ng-controller='MainCtrl')
    header
      ul#mainMenu
        li(data-display='getdata').activeMenu All
          {{name}}


        li
        .show-data(ng-repeat="user in getdata")
          .name {{name}}

我的数据未显示的code有什么问题?

0 个答案:

没有答案