angular – 如何双向绑定我自己的RxJS主题为[(ngModel)]?

前端之家收集整理的这篇文章主要介绍了angular – 如何双向绑定我自己的RxJS主题为[(ngModel)]?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有简短的方法将RxJS SubjectBehaviorSubject传递给Angular 2指令进行双向绑定?完成它的漫长道路如下:
@Component({
    template: `
        <input type="text" [ngModel]="subject | async" (ngModelChange)="subject.next($event)" />
    `
})

我希望能够做到这样的事情:

@Component({
    template: `
        <input type="text" [(ngModel)]="subject" />
    `
})

我相信异步管道只是单向的,所以这还不够。 Angular 2是否提供了一种简单易行的方法? Angular 2也使用RxJS,因此我预计会有一些固有的兼容性。

我是否可以创建一个类似ngModel的新指令来实现这一目标?

我能想到的最接近的是使用FormControl:
import { FormControl } from '@angular/forms';

@Component({
    template: '<input [formControl]="control">'
})
class MyComponent {
    control = new FormControl('');
    constructor(){
        this.control.valueChanges.subscribe(()=> console.log('tada'))
    }
}
原文链接:https://www.f2er.com/angularjs/143980.html

猜你在找的Angularjs相关文章