3

我有角度应用程序 v6,我正在使用最新版本的mobxmobx-angular(您可以在依赖项中看到)。我来自 ngrx,ngxs 背景,所以很难理解 mobx 流程,因为它或多或少地angular-service接近了一些额外的东西(也有性能)。

我在 stackblitz 示例中问的问题很少。希望有人指导一下。

演示应用

store.ts

@Injectable()
export class Store {

    @observable counter: number = 0;

    constructor() { }

    @action count() {
        this.counter ++;
    }
}

app.component.ts

export class AppComponent  {

  _counter:number=0;

  constructor(private store:Store){}

  ngOnInit(){
    // how to subscribe to updated value of counter from service and assign it to this._counter ????

    this._counter = this.store.counter;
  }
}

app.component.html

    <div *mobxAutorun>Counter : {{store.counter}}<br /></div>

______________________________________________

<div>Counter : {{store.counter}}<br /></div>

______________________________________________


<div>how to subscribe to updated value form 'counter' variable to '_counter' local variable????</div><br />

<div> {{_counter}} </div>

<button (click)="store.count()">Count</button>
4

1 回答 1

3

您可以在 中设置 RxJs 订阅ngOnInit

ngOnInit() {
  this.store.toRx(this.store, 'counter')
    .subscribe(val => this._counter = val)
}

toRx是可以添加到商店的便利功能。
它使用 Mobxobserve()函数,每次指定项目更改时都会激活一个回调。

import { Injectable } from '@angular/core';
import { action, observable, observe } from 'mobx';
import { Observable } from 'rxjs';

@Injectable()
export class Store {
  ...
  toRx(obj, prop) {
    return Observable.create(observer =>
      observe(obj, prop, (change) => observer.next(change.newValue), true)
    );
  }
}

如果您有要订阅的深层嵌套属性,例如

@Injectable()
export class Store {
  ...    
  @observable counterWrapper = { counter: 0 };

只需更改的第一个参数toRx

this.store.toRx(this.store.counterWrapper, 'counter')
  .subscribe(val => this._counter = val)
于 2018-09-22T22:28:10.727 回答