我正在使用 nodejs,需要从 json 中获取字符串值。
json 看起来像这样:
`result["DIDL-Lite"]["item"] = [ { '$': { id: '0/Spotify/Track', parentID: '0/Spotify', restricted: '0' },
'upnp:class': [ 'object.item.audioItem.musicTrack' ],
'raumfeld:section': [ 'Spotify' ],
'dc:title': [ 'Californication' ],
'upnp:artist': [ 'Red Hot Chili Peppers' ],
'upnp:album': [ 'Californication (Deluxe Version)' ],
'upnp:albumArtURI': [ [Object] ] } ]`
我如何访问 dc:title (或任何其他)值?
我正在尝试不同的方法,例如console.log(result["DIDL-Lite"]["item"]["dc:title"]);
,但我根本无法让它工作......
有小费吗?提前谢谢你!!