即使在使用$ apply之后,Angular也不会更新视图

时间:2015-11-05 16:21:08

标签: javascript angularjs ng-file-upload

我在主页中使用

包含一个html文件
<div ng-controller="detailViewCtrl"  ng-include="'partials/template.html'"></div>

在这个脚本里面有一个显示一些文档的列表。

<li ng-repeat="document in relatedDocuments" style="cursor: pointer;" class="box" ng-click="gotoDocument(document)">
  <div><i class="fa fa-file-pdf-o"></i> <span>{{document.name | limitTo: 20 }}{{document.name.length > 20 ? '...' : ''}}</span></div>
  <md-tooltip md-direction="top">
    {{document.name}}
  </md-tooltip>
  <thumbnail file-type="{{document.filetype}}" source="document.fullpath" max-height="150" max-width="210"></thumbnail>
</li>

在某些时候,使用位于另一个模板中的按钮,几乎以同样的方式包含,我可能会上传一个新的pdf文件。该文件上传到我的服务器,并进行查询,请求文档列表(现在预计包含此新文档)。此查询与最初调用以填充relatedDocuments的函数相同。这次虽然列表没有更新,但无论我上传了多少文档。只有刷新我才会看到新上传的文件。

尝试强制$digest我自己不会有任何影响,即使我可以在承诺解决后在我的控制台中看到打印列表,我的视图也会保持不变。

控制器如下所示:

.controller('detailViewCtrl', function($scope, $i18next, $routeParams,...    

$scope.relatedDocuments = [];

$scope.getRelatedDocuments = function(document) {
  myAPI.getRelatedDocuments($scope.id).then(function(response) {
    $scope.relatedDocuments = response.data.result;    
    console.log("getRelatedDocuments", $scope.relatedDocuments);
  });
};

$scope.getRelatedDocuments();

此模块中还有一个uploadDocument()函数,在上传文档后调用getRelatedDocuments()。此函数使用ng-file-upload来处理到服务器的实际数据传输。

$scope.uploadFile = function(file) {
    file.upload = Upload.upload({
      url: tempPath,
      method: 'POST',
      file: file,
      sendFieldsAs: 'form',
      fields: {
        docid: $scope.id
      }
    });

    file.upload.then(function(response) {
      $timeout(function() {
        file.result = response.data;
      });
    }, function(response) {
      $scope.getRelatedDocuments(); // Here I try to update the list
      if (response.status > 0)
        $scope.errorMsg = response.status + ': ' + response.data;
    }, function(evt) {
      file.progress = Math.min(100, parseInt(100.0 * evt.loaded / evt.total));
    });
  }

在主页面的某个位置按下相应按钮后调用此上传功能。因为我可以看到日志消息,并且响应我认为一切都应该如此。

可以找到包含代码相关部分的插件here。它不起作用,因为它需要后端来保存和获取文档列表,但它仍然是一个很好的参考。

有谁知道为什么会这样?

1 个答案:

答案 0 :(得分:3)

似乎在包含两个模板时我不应该使用ng-controller指令,因为它们是从也使用相同控制器的页面调用的。如果您将相同的控制器嵌套在自身上,那么Angular可能会以意想不到的方式运行。