我在构造函数中使用 Observable.from() 制作了数组流,并在构造函数中订阅了它,数组正在更新,但订阅方法不起作用我想,我没有为数据获取 console.log,这里是编码
@Component({
selector: 'my-app',
template: `
<input type="text" required
[(ngModel)]="inputValue" name="inputValue" >
<button (click)="addto()">submit</button>
})
这是课
export class first{
proxySubject;
inputValue: string;
array = [];
constructor(){
this.proxySubject = Observable.from(this.array)
this.proxySubject.subscribe(function(data){
console.log(data))
}
addto(){
this.array.push(this.inputValue)
}
}