如何从json.stringify:ionic中读取特定值

问题描述 投票:1回答:4

从帖子我有一个res作为

.subscribe( res => {
    let result = JSON.stringify(res);
    alert(result)
})

&作为alert(result)的反应,我得到了

{"access_token": "hjhdshJHUHYI67HUjhhk98BJ_BJHBBHbnbhbhbjh_jmnhghmghgfffgxcgfcf98hujh",
 "expires_in":"518399"}

在这里,我想阅读access_token值并将其保存在变量中我该怎么做?

javascript angular typescript ionic2
4个回答
1
投票

您不必进行字符串化,只需将其作为qazxsw poi访问即可

res.access_token

1
投票

只需使用通常的语法访问该对象的属性即可。

.subscribe((res:any) => {
  let result = res.access_token;
  alert(result)
})

0
投票
.subscribe( res => {
    let the_variable = res['access_token']; //or `result.access_token`
})

0
投票
.subscribe( res => {
    alert(res.access_token)
})

如果您无法通过以下解决方案解决问题..

无需对结果进行字符串化。请尝试以下..

.subscribe( res => {
     alert(res.access_token)
 })
© www.soinside.com 2019 - 2024. All rights reserved.