Javascript - fetch(Javascript - 获取)
问题描述
我对编程很陌生,但遇到了一个问题.
Im quite new to programming and I'm stuck with a problem.
这是我的代码:
fetch('https://feed.tunein.com/profiles/s9615/nowPlaying')
.then(response => response.json())
.then(data => console.log(data))
这是我得到的回复:
{
Header: { Title: 'Radio 1', Subtitle: 'BQL - Muza' },
Primary: {
GuideId: 's9615',
Image: 'http://cdn-radiotime-logos.tunein.com/s9615q.png',
Title: 'Radio 1',
Subtitle: 'Več dobre glasbe'
},
Secondary: {
GuideId: 'o0',
Image: 'http://cdn-radiotime-logos.tunein.com/s9615q.png',
Title: 'BQL - Muza',
Subtitle: 'Radio 1',
FullScreen: true
},
Ads: {
CanShowAds: true,
CanShowPrerollAds: true,
CanShowCompanionAds: false,
CanShowVideoPrerollAds: false
},
Echo: {
CanEcho: false,
EchoCount: 0,
TargetItemId: 's9615',
Scope: 's9615',
Url: '',
FeedTag: 's9615'
},
React: {
CanReact: false,
TargetItemId: 's9615',
Scope: 's9615',
Url: 'https://api.radiotime.com/profiles/me/activities?itemToken=BgwMAAAAAAAAAAAAAAABjyUAAAEMAY8lAAABjyUAAA',
Reactions: [ [Object], [Object], [Object], [Object], [Object] ]
},
Donate: { CanDonate: false },
Share: { CanShare: true, ShareUrl: 'http://tun.in/selA9' },
Follow: { Options: [ [Object], [Object] ] },
Record: { CanRecord: false },
Classification: {
ContentType: 'music',
IsEvent: false,
IsOnDemand: false,
IsFamilyContent: false,
IsMatureContent: false,
GenreId: 'g141'
},
Link: { WebUrl: 'http://www.radio1.si/' },
Ttl: 18,
Token: 'eyJwIjpmYWxzZSwidCI6IjIwMjAtMDQtMjRUMjM6NDA6MTAuNzIwNDY4OVoifQ'
}
所以我正在尝试提取存储在 Secondary - Title 中的当前播放歌曲.那么如何提取呢?
So I'm trying to extract the current playing song which is stored in Secondary - Title. So how could i extract it?
感谢您的帮助,也很抱歉我的英语不是我的母语!
Thank you for your help and also sorry about my english since it is not my first language!
推荐答案
代替console.log(data),使用console.log(data.Secondary.Title)
然后您可能想要对数据做一些事情,而不是仅仅将其记录到控制台.
You will probably then want to do something with the data instead of just log it to the console.
这篇关于Javascript - 获取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Javascript - 获取
基础教程推荐
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
