假设我有以下Angular 2组件,其中foo是一个未绑定到表单的对象,而不是来自Input():
@H_404_22@@Component({ selector: 'foo',templateUrl: '/angular/views/foo.template.html',directives: [ContentEditableDirective,ROUTER_DIRECTIVES],providers: [FooService] }) export class FooComponent implements OnInit { public foo: Foo = new Foo(); constructor( private fooService: FooService,private route : ActivatedRoute,private router : Router) {} ngOnInit() { let id = +this.route.snapshot.params['id']; this.fooService.getFoo(id).subscribe( foo => { this.foo = foo; // I have this.foo,we should watch for changes here. Observable. // ??? .debounceTime(1000) .subscribe(input => fooService.autoSave(this.foo)); },error => console.log(error) ); } }
如何订阅对Foo对象的更改,并将其发送到我的服务器?
到目前为止我看到的每个例子都涉及让foo从Input()中获取,或者被绑定到一个表单.我只是想看一个普通的旧Javascript对象进行更改并对此作出反应.
更新
但是,我一直无法使用具有自己属性的复杂对象(here);因为当更新foo对象的属性时,ngModel不会调用所提供的plnkr中的setter.
正确的答案将证明这适用于复杂的对象.
更新2
I believe I have it working with a complex object;但是必须确保对象是不可变的,并且每个属性都有setter,这有点令人失望.它似乎也需要将[(ngModel)]拆分为[ngModel]和(ngModelChange),以便您可以指定自定义设置器逻辑.
理论上你可以将功能抽象为状态服务,但我想看看是否可以进一步去除样板量.每次想要进行状态更改时创建新对象都会让人感到沮丧.