从帖子我有一个res作为
.subscribe( res => {
let result = JSON.stringify(res);
alert(result)
})
&作为alert(result)
的反应,我得到了
{"access_token": "hjhdshJHUHYI67HUjhhk98BJ_BJHBBHbnbhbhbjh_jmnhghmghgfffgxcgfcf98hujh",
"expires_in":"518399"}
在这里,我想阅读access_token
值并将其保存在变量中我该怎么做?
您不必进行字符串化,只需将其作为qazxsw poi访问即可
res.access_token
只需使用通常的语法访问该对象的属性即可。
.subscribe((res:any) => {
let result = res.access_token;
alert(result)
})
.subscribe( res => {
let the_variable = res['access_token']; //or `result.access_token`
})
.subscribe( res => {
alert(res.access_token)
})
如果您无法通过以下解决方案解决问题..
无需对结果进行字符串化。请尝试以下..
.subscribe( res => {
alert(res.access_token)
})