我有一个HTTP服务来获取股票符号:
getStockBySymbol(symbol): Observable<IEXStockPrice> {
return this.http.get<IEXStockPrice>(this.IEXBaseUrl + '/stock/' + symbol + '/quote');
}
在我的组件中,i:1)有一个局部变量
watchlist: IEXStockPrice[];
2)调用我的getstockbysymbol服务并订阅它:
addStockToWatchList() {
this.iex.getStockBySymbol(this.symbol)
.subscribe(
(data: IEXStockPrice) => {
this.watchlist.push(data);
this.alertify.success('Added ' + data.symbol);
this.symbol = '';
},
(err: any) => {
this.alertify.error('Could not add symbol to the watchlist');
this.symbol = '';
}
);
}
但是,当我尝试将返回的股票添加到股票的本地观察列表数组时,我得到一个
Cannot read property 'push' of undefined
在控制台中。我不知道我在这里做错了什么。