224

在 AngularJS 中,您可以$watch使用$scope. 在 Angular 中观察变量变化(例如,在组件变量中)的等价物是什么?

4

8 回答 8

280

在 Angular 2 中,更改检测是自动的……$scope.$watch()$scope.$digest()RIP

不幸的是,开发指南的变更检测部分尚未编写(在架构概述页面底部附近的“其他东西”部分中有一个占位符)。

以下是我对变更检测如何工作的理解:

  • Zone.js “猴子修补世界”——它拦截浏览器中的所有异步 API(当 Angular 运行时)。这就是为什么我们可以setTimeout()在我们的组件内部使用而不是像$timeout... 因为setTimeout()是猴子补丁。
  • Angular 构建并维护了一个“变更检测器”树。每个组件/指令都有一个这样的变化检测器(类)。(你可以通过注入来访问这个对象ChangeDetectorRef。)这些变化检测器是在 Angular 创建组件时创建的。他们跟踪所有绑定的状态,以进行脏检查。在某种意义上,这些类似于Angular 1 为模板绑定$watches()设置​​的自动。与 Angular 1 不同,变化检测图是一个有向树,不能有循环(这使得 Angular 2 的性能更高,我们将在下面看到)。{{}}
  • 当事件触发时(在 Angular 区域内),我们编写的代码(事件处理程序回调)运行。它可以更新它想要的任何数据——共享的应用程序模型/状态和/或组件的视图状态。
  • 之后,由于 Zone.js 添加了钩子,它会运行 Angular 的变化检测算法。默认情况下(即,如果您没有onPush在任何组件上使用更改检测策略),树中的每个组件都会被检查一次(TTL=1)......从顶部开始,以深度优先的顺序。(好吧,如果您处于开发模式,更改检测会运行两次(TTL=2)。有关此内容的更多信息,请参见ApplicationRef.tick()。)它使用这些更改检测器对象对您的所有绑定执行脏检查。
    • 生命周期挂钩被称为变更检测的一部分。
      如果您要查看的组件数据是原始输入属性(字符串、布尔值、数字),则可以实现ngOnChanges()以收到更改通知。
      如果输入属性是引用类型(对象、数组等),但引用没有改变(例如,您向现有数组添加了一个项目),您需要实现ngDoCheck()(有关更多信息,请参阅此 SO 答案对此)。
      您应该只更改组件的属性和/或后代组件的属性(因为单树遍历实现——即单向数据流)。这是一个违反这一点的笨蛋。有状态的管道也可以在这里绊倒你
  • 对于找到的任何绑定更改,将更新组件,然后更新 DOM。更改检测现已完成。
  • 浏览器会注意到 DOM 的变化并更新屏幕。

了解更多信息的其他参考资料:

于 2016-01-02T19:58:30.027 回答
96

此行为现​​在是组件生命周期的一部分。

组件可以在OnChanges接口中实现 ngOnChanges 方法来访问输入更改。

例子:

import {Component, Input, OnChanges} from 'angular2/core';


@Component({
  selector: 'hero-comp',
  templateUrl: 'app/components/hero-comp/hero-comp.html',
  styleUrls: ['app/components/hero-comp/hero-comp.css'],
  providers: [],
  directives: [],

  pipes: [],
  inputs:['hero', 'real']
})
export class HeroComp implements OnChanges{
  @Input() hero:Hero;
  @Input() real:string;
  constructor() {
  }
  ngOnChanges(changes) {
      console.log(changes);
  }
}
于 2016-01-02T18:25:23.070 回答
71

如果除了自动双向绑定之外,您还想在值更改时调用函数,您可以将双向绑定快捷语法打破为更详细的版本。

<input [(ngModel)]="yourVar"></input>

是简写

<input [ngModel]="yourVar" (ngModelChange)="yourVar=$event"></input>

(参见例如http://victorsavkin.com/post/119943127151/angular-2-template-syntax

你可以这样做:

<input [(ngModel)]="yourVar" (ngModelChange)="changedExtraHandler($event)"></input>

于 2016-01-19T10:38:57.843 回答
17

您可以在 angular 2 上使用getter functionget accessor充当手表。

在此处查看演示。

import {Component} from 'angular2/core';

@Component({
  // Declare the tag name in index.html to where the component attaches
  selector: 'hello-world',

  // Location of the template for this component
  template: `
  <button (click)="OnPushArray1()">Push 1</button>
  <div>
    I'm array 1 {{ array1 | json }}
  </div>
  <button (click)="OnPushArray2()">Push 2</button>
  <div>
    I'm array 2 {{ array2 | json }}
  </div>
  I'm concatenated {{ concatenatedArray | json }}
  <div>
    I'm length of two arrays {{ arrayLength | json }}
  </div>`
})
export class HelloWorld {
    array1: any[] = [];
    array2: any[] = [];

    get concatenatedArray(): any[] {
      return this.array1.concat(this.array2);
    }

    get arrayLength(): number {
      return this.concatenatedArray.length;
    }

    OnPushArray1() {
        this.array1.push(this.array1.length);
    }

    OnPushArray2() {
        this.array2.push(this.array2.length);
    }
}
于 2016-07-29T11:17:56.120 回答
12

这是对模型使用 getter 和 setter 函数的另一种方法。

@Component({
  selector: 'input-language',
  template: `
  …
  <input 
    type="text" 
    placeholder="Language" 
    [(ngModel)]="query" 
  />
  `,
})
export class InputLanguageComponent {

  set query(value) {
    this._query = value;
    console.log('query set to :', value)
  }

  get query() {
    return this._query;
  }
}
于 2017-01-30T12:24:15.803 回答
8

如果你想让它成为 2 路绑定,你可以使用[(yourVar)],但你必须实现yourVarChangeevent 并在每次变量更改时调用它。

像这样跟踪英雄变化的东西

@Output() heroChange = new EventEmitter();

然后当你的英雄改变时,打电话this.heroChange.emit(this.hero);

[(hero)]绑定将为您完成剩下的工作

看这里的例子:

http://plnkr.co/edit/efOGIJ0POh1XQeRZctSx?p=preview

于 2016-03-02T16:31:48.070 回答
5

这并不能直接回答这个问题,但是我在不同的场合遇到了这个 Stack Overflow 问题,以解决我在 angularJs 中使用 $watch 的问题。我最终使用了不同于当前答案中描述的另一种方法,并希望分享它以防有人发现它有用。

我用来实现类似功能的技术$watch是在 Angular 服务中使用BehaviorSubject更多关于这里的主题),并让我的组件订阅它以获取(观察)更改。这类似于$watchangularJs 中的 a,但需要更多的设置和理解。

在我的组件中:

export class HelloComponent {
  name: string;
  // inject our service, which holds the object we want to watch.
  constructor(private helloService: HelloService){
    // Here I am "watching" for changes by subscribing
    this.helloService.getGreeting().subscribe( greeting => {
      this.name = greeting.value;
    });
  }
}

在我的服务

export class HelloService {
  private helloSubject = new BehaviorSubject<{value: string}>({value: 'hello'});
  constructor(){}
  // similar to using $watch, in order to get updates of our object 
  getGreeting(): Observable<{value:string}> {
    return this.helloSubject;
  }
  // Each time this method is called, each subscriber will receive the updated greeting.
  setGreeting(greeting: string) {
    this.helloSubject.next({value: greeting});
  }
}

这是关于Stackblitz的演示

于 2019-05-21T06:49:55.983 回答
2

当您的应用程序仍然需要$parse,时尝试此操作$eval$watch例如 Angular 中的行为

https://github.com/vinayk406/angular-expression-parser

于 2017-12-10T15:05:39.597 回答