如何将JSON对象存储在变量中?

时间:2018-10-25 07:10:26

标签: angular

我有在表单响应中获取JSON数据(对象)的服务。 我想将该JSON对象存储在storeCrossChannelData变量中。 我该如何实现?

this.crossChannelSuccessComparison.getCrossChannelData().subscribe(response=>{
     this.storeCrossChannelData = response
})
console.log(this.storeCrossChannelData);

1 个答案:

答案 0 :(得分:1)

console.log没有显示返回值,因为在服务返回数据之前调用了console.log,尝试像这样在subscribe中调用console.log

this.crossChannelSuccessComparison.getCrossChannelData().subscribe(response=>{ 
        this.storeCrossChannelData = response
        console.log(this.storeCrossChannelData);
     })