typescript 儿童父母管道通讯

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript 儿童父母管道通讯相关的知识,希望对你有一定的参考价值。

   <div class="prf-id-content prf-id-cfd-platform-brand-group-edit-dialog--prf-id-content">
        <prf-cfd-platform-group-form
                operation="$ctrl.resolve.operation"
                group="$ctrl.group$ | async:this"
                on-change-of-group="$ctrl.opUpdateUiGroup$.next(group)"
        >
        </prf-cfd-platform-group-form>
    </div>
export class childCtrl extends BaseController {
  /* Bindings */
  group: CfdPlatformGroup;
  onChangeOfGroup: (a: { group: CfdPlatformGroup }) => {};

  unsub$ = new Subject<void>();
  groupIn$ = new BehaviorSubject<CfdPlatformGroup>(null);
  groupOut$ = new Subject<NgModelChange>();
  groupModel = {};

  /*@ngInject */
  constructor() {
    super();
  }

  $onInit() {
    this.groupModel = createNgModelObsMediator([
      'name',
      'spread',
      'leverage',
    ],
      this.groupIn$,
      this.groupOut$,
    );
    useStream(this.streamModelOut(), this.unsub$);
  }

  $onDestroy() {
    this.unsub$.next();
    this.unsub$.complete();
  }

  onGroupChange(newGroup: CfdPlatformGroup) {
    this.groupIn$.next(newGroup);
  }

  streamModelOut() {
    return pipe(
      () => this.groupOut$,
      tap(group => this.onChangeOfGroup({ group })),
    )(null);
  }
}





export const child = {
  template,
  controller: childCtrl,
  bindings: {
    group: '<',
    onChangeOfGroup: '&',
    operation: '<',
  },
};

export default child;

以上是关于typescript 儿童父母管道通讯的主要内容,如果未能解决你的问题,请参考以下文章

javascript 从儿童与父母一起呈现

儿童片段到父母片段沟通

悬停儿童的父母

儿童做家务年龄对照表,80%的父母都后悔看晚了…

Excel项目实战-根据父母的购买行为来预测儿童的年龄,或者根据孩子的信息(年龄,性别等)来预测用户会购买哪种商品。

Excel项目实战-根据父母的购买行为来预测儿童的年龄,或者根据孩子的信息(年龄,性别等)来预测用户会购买哪种商品。