我在一个类中有两个函数,两个类都从API调用中获取数据。
这是第一个功能
getQuotes(){
this.quoteService.getQuotes()
.subscribe(
quotes => {
this.quotCode = this.quotes.BasicDetails[0].QuotCode;
}
});
}
第二功能
getOption(){
this.quoteService.getOptions()
.subscribe(
options => {
})
}
我想从第一个函数
获取此行的数据this.quotCode = this.quotes.BasicDetails[0].QuotCode;
并且基于this.quotCode
getOption()
将有不同的参数传递并将获得差异。回应也。所以有必要在第二个函数中使用this.quotCode
我在getQuotes()
constuctor()
任何人都可以帮帮我吗? 感谢