angularjs – 如何调用$scope $apply()使用“controller as”语法

前端之家收集整理的这篇文章主要介绍了angularjs – 如何调用$scope $apply()使用“controller as”语法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图尽可能地限制我在控制器中使用$ scope,并将其替换为Controller作为语法。

我当前的问题是,我不知道如何调用$ scope。$ apply()在我的控制器中,而不使用$ scope。

编辑:我正在使用TypeScript 1.4与角度

我有这个功能

setWordLists() {
  this.fetchInProgress = true;
  var campaignId = this.campaignFactory.currentId();
  var videoId = this.videoFactory.currentId();

  if (!campaignId || !videoId) {
    return;
  }

  this.wordsToTrackFactory.doGetWordsToTrackModel(campaignId,videoId)
  .then((response) => {
    this.fetchInProgress = false;
    this.wordList = (response) ? response.data.WordList : [];
    this.notUsedWordList = (response) ? response.data.NotUsedWords : [];
  });
}

被叫来

$scope.$on("video-switch",() => {
           this.setWordLists();
});

它是(数组wordList而notUsedWordList)
在我看来没有更新:

<div class="wordListWellWrapper row" ng-repeat="words in wordTrack.wordList">
  <div class="col-md-5 wordListWell form-control" ng-class="(words.IsPositive)? 'posWordWell': 'negWordWell' ">
    <strong class="wordListWord">{{words.Word}}</strong>
    <div class="wordListIcon">
      <div class="whiteFaceIcon" ng-class="(words.IsPositive)? 'happyWhiteIcon': 'sadWhiteIcon' "></div>
    </div>
  </div>
  <div class="col-md-2">
    <span aria-hidden="true" class="glyphicon-remove glyphicon" ng-click="wordTrack.removeWord(words.Word)"></span>
  </div>
</div>

按照同样的条件申请,是否有另一种方式调用$ scope。$ on使用Controller作为?

谢谢!

为了回答这里的问题,只要将$ scope作为参数传递给函数,就可以在控制器中使用$ scope()方法来使用controller-as语法。然而,使用控制器作为语法的主要好处之一是不使用$ scope,这会造成一个困难。

正如评论中讨论的那样,海报将会提出一个新问题,以便首先审查需要范围的具体代码,并提出一些可能的重组建议。

原文链接:https://www.f2er.com/angularjs/144118.html

猜你在找的Angularjs相关文章